Enum AnsiColorCode
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
Fields
BLACK = 30The ANSI color code for Black.
BLUE = 34The ANSI color code for Blue.
BRIGHT_BLACK = 90The ANSI color code for Bright Black.
BRIGHT_BLUE = 94The ANSI color code for Bright Blue.
BRIGHT_CYAN = 96The ANSI color code for Bright Cyan.
BRIGHT_GREEN = 92The ANSI color code for Bright Green.
BRIGHT_MAGENTA = 95The ANSI color code for Bright Magenta.
BRIGHT_RED = 91The ANSI color code for Bright Red.
BRIGHT_WHITE = 97The ANSI color code for Bright White.
BRIGHT_YELLOW = 93The ANSI color code for Bright Yellow.
CYAN = 36The ANSI color code for Cyan.
GREEN = 32The ANSI color code for Green.
MAGENTA = 35The ANSI color code for Magenta.
RED = 31The ANSI color code for Red.
WHITE = 37The ANSI color code for White.
YELLOW = 33The ANSI color code for Yellow.