2024-08-13 13:08:50 +02:00
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace Catalogger.Backend.Bot;
|
|
|
|
|
|
|
|
|
|
public static class DiscordUtils
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
}
|