enum ui.StdColor

enum StdColor
{
    Black        = 0x000000,
    White        = 0xffffff,
    Gray         = 0x808080,
    Red          = 0x800000,
    Green        = 0x008000,
    Blue         = 0x000080,
    Purple       = 0x800080,
    Cyan         = 0x008080,
    LightRed     = 0xff0000,
    LightGreen   = 0x00ff00,
    LightBlue    = 0x0000ff,
    LightPurple  = 0xff00ff,
    LightCyan    = 0x00ffff,
    PastelGray   = 0xefefef,
    PastelRed    = 0xffe4e1,
    PastelOrange = 0xffefc0,
    PastelYellow = 0xffffc0,
    PastelGreen  = 0xe1fada,
    PastelCyan   = 0xcdfaff,
    PastelBlue   = 0xe2edff,
    PastelPurple = 0xe2dafd,
};