40 enum ColorCodeComponent
42 BlackForeground = 1 << ForegroundShift,
43 BlueForeground = 2 << ForegroundShift,
44 GreenForeground = 3 << ForegroundShift,
45 CyanForeground = 4 << ForegroundShift,
46 RedForeground = 5 << ForegroundShift,
47 PurpleForeground = 6 << ForegroundShift,
48 BrownForeground = 7 << ForegroundShift,
49 LightGrayForeground = 8 << ForegroundShift,
50 DarkGrayForeground = 9 << ForegroundShift,
51 LightBlueForeground = 10 << ForegroundShift,
52 LightGreenForeground = 11 << ForegroundShift,
53 LightCyanForeground = 12 << ForegroundShift,
54 LightRedForeground = 13 << ForegroundShift,
55 LightPurpleForeground = 14 << ForegroundShift,
56 YellowForeground = 15 << ForegroundShift,
57 WhiteForeground = 16 << ForegroundShift,
59 BlackBackground = 1 << BackgroundShift,
60 BlueBackground = 2 << BackgroundShift,
61 GreenBackground = 3 << BackgroundShift,
62 CyanBackground = 4 << BackgroundShift,
63 RedBackground = 5 << BackgroundShift,
64 PurpleBackground = 6 << BackgroundShift,
65 BrownBackground = 7 << BackgroundShift,
66 DefaultColor = 1 << SpecialShift