summaryrefslogtreecommitdiff
path: root/src/screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h27
1 files changed, 16 insertions, 11 deletions
diff --git a/src/screen.h b/src/screen.h
index 22211b4..25cd8fa 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -41,6 +41,8 @@ enum custom_colors {
41 CC_WHITE, // RGB: 255, 255, 255 41 CC_WHITE, // RGB: 255, 255, 255
42 CC_BLACK, // RGB: 0, 0, 0 42 CC_BLACK, // RGB: 0, 0, 0
43 43
44 CC_WINNING, // RGB: 232, 185, 35
45
44 // This isn't actually a color, even if you try to use it as one 46 // This isn't actually a color, even if you try to use it as one
45 CC_TOOBIG 47 CC_TOOBIG
46}; 48};
@@ -50,17 +52,20 @@ enum customcolor_pairs {
50 52
51 CCP_CURSES_DEFAULT = 0, 53 CCP_CURSES_DEFAULT = 0,
52 54
53 CCP_TESTING, 55 CCP_TESTING, // Text: White, BG: Red
54 CCP_BANNER, 56 CCP_BANNER, // Text: White, BG: Curses' Blue
55 57
56 CCP_RED, 58 CCP_RED, // Text: White, BG: Red
57 CCP_ORANGE, 59 CCP_ORANGE, // Text: Black, BG: Orange
58 CCP_YELLOW, 60 CCP_YELLOW, // Text: Black, BG: Yellow
59 CCP_GREEN, 61 CCP_GREEN, // Text: Black, BG: Green
60 CCP_BLUE, 62 CCP_BLUE, // Text: White, BG: Blue
61 CCP_PURPLE, 63 CCP_PURPLE, // Text: White, BG: Purple
62 CCP_MAGENTA, 64 CCP_MAGENTA, // Text: White, BG: Magenta
63 CCP_WHITE, 65 CCP_WHITE, // Text: Black, BG: White
66
67 CCP_WINNING1, // Text: White, BG: Gold
68 CCP_WINNING2, // Text: Gold, BG: White
64 69
65 CCP_TOOBIG 70 CCP_TOOBIG
66}; 71};