summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-27 19:47:31 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-27 19:47:31 -0500
commitaea002f290e5eddde98eb394fa7a9145c325fffe (patch)
tree11533f72e6f56cabf26d02cd5e48d69f666b51f4 /colors.h
parent4554db338221f8fd1c7b4855b8d5bc50780815d2 (diff)
buttons (for warn overwrite popup)
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) {