2023-07-09 16:32:14 +03:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
2024-05-16 18:34:26 +03:00
|
|
|
|
namespace TeamOctolings.Octobot;
|
2023-07-09 16:32:14 +03:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Contains all colors used in embeds.
|
|
|
|
|
/// </summary>
|
2023-08-02 23:51:16 +03:00
|
|
|
|
public static class ColorsList
|
|
|
|
|
{
|
2023-07-09 16:32:14 +03:00
|
|
|
|
public static readonly Color Default = Color.Gray;
|
2023-08-02 23:51:16 +03:00
|
|
|
|
public static readonly Color Red = Color.Firebrick;
|
|
|
|
|
public static readonly Color Green = Color.PaleGreen;
|
|
|
|
|
public static readonly Color Yellow = Color.Gold;
|
|
|
|
|
public static readonly Color Blue = Color.RoyalBlue;
|
2023-07-09 16:32:14 +03:00
|
|
|
|
public static readonly Color Magenta = Color.Orchid;
|
2023-08-02 23:51:16 +03:00
|
|
|
|
public static readonly Color Cyan = Color.LightSkyBlue;
|
|
|
|
|
public static readonly Color Black = Color.Black;
|
|
|
|
|
public static readonly Color White = Color.WhiteSmoke;
|
2023-07-09 16:32:14 +03:00
|
|
|
|
}
|