summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/colors.h b/colors.h
index 047228c..87feaf1 100644
--- a/colors.h
+++ b/colors.h
@@ -16,6 +16,10 @@ ENUM_U16 {
COLOR_ERROR_BG,
COLOR_ERROR_BORDER,
+ COLOR_YES,
+ COLOR_NO,
+ COLOR_CANCEL,
+
COLOR_COUNT
} ENUM_U16_END(ColorSetting);
@@ -39,7 +43,10 @@ static ColorName const color_names[COLOR_COUNT] = {
{COLOR_MENU_HL, "menu-hl"},
{COLOR_ERROR_TEXT, "error-text"},
{COLOR_ERROR_BG, "error-bg"},
- {COLOR_ERROR_BORDER, "error-border"}
+ {COLOR_ERROR_BORDER, "error-border"},
+ {COLOR_YES, "yes"},
+ {COLOR_NO, "no"},
+ {COLOR_CANCEL, "cancel"}
};
static ColorSetting color_setting_from_str(char const *str) {