Catalogger.NET/Catalogger.Backend/Bot/DiscordUtils.cs

13 lines
375 B
C#
Raw Normal View History

2024-08-13 13:08:50 +02:00
using System.Drawing;
using Remora.Discord.API;
using Remora.Rest.Core;
2024-08-13 13:08:50 +02:00
namespace Catalogger.Backend.Bot;
public static class DiscordUtils
{
public static readonly Snowflake PkUserId = DiscordSnowflake.New(466378653216014359);
2024-08-16 17:04:24 +02:00
2024-08-13 13:08:50 +02:00
public static readonly Color Red = Color.FromArgb(231, 76, 60);
2024-08-13 16:48:54 +02:00
public static readonly Color Purple = Color.FromArgb(155, 89, 182);
2024-08-13 13:08:50 +02:00
}