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