namespace Terminal.Gui; /// /// The 16 foreground color codes used by ANSI Esc sequences for 256 color terminals. Add 10 to these values for background /// color. /// public enum AnsiColorCode { /// /// The ANSI color code for Black. /// BLACK = 30, /// /// The ANSI color code for Red. /// RED = 31, /// /// The ANSI color code for Green. /// GREEN = 32, /// /// The ANSI color code for Yellow. /// YELLOW = 33, /// /// The ANSI color code for Blue. /// BLUE = 34, /// /// The ANSI color code for Magenta. /// MAGENTA = 35, /// /// The ANSI color code for Cyan. /// CYAN = 36, /// /// The ANSI color code for White. /// WHITE = 37, /// /// The ANSI color code for Bright Black. /// BRIGHT_BLACK = 90, /// /// The ANSI color code for Bright Red. /// BRIGHT_RED = 91, /// /// The ANSI color code for Bright Green. /// BRIGHT_GREEN = 92, /// /// The ANSI color code for Bright Yellow. /// BRIGHT_YELLOW = 93, /// /// The ANSI color code for Bright Blue. /// BRIGHT_BLUE = 94, /// /// The ANSI color code for Bright Magenta. /// BRIGHT_MAGENTA = 95, /// /// The ANSI color code for Bright Cyan. /// BRIGHT_CYAN = 96, /// /// The ANSI color code for Bright White. /// BRIGHT_WHITE = 97 }