summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/colors.h b/colors.h
index 96b26a4..047228c 100644
--- a/colors.h
+++ b/colors.h
@@ -12,6 +12,9 @@ ENUM_U16 {
COLOR_MENU_BACKDROP,
COLOR_MENU_BG,
COLOR_MENU_HL,
+ COLOR_ERROR_TEXT,
+ COLOR_ERROR_BG,
+ COLOR_ERROR_BORDER,
COLOR_COUNT
} ENUM_U16_END(ColorSetting);
@@ -33,7 +36,10 @@ static ColorName const color_names[COLOR_COUNT] = {
{COLOR_SELECTION_BG, "selection-bg"},
{COLOR_MENU_BACKDROP, "menu-backdrop"},
{COLOR_MENU_BG, "menu-bg"},
- {COLOR_MENU_HL, "menu-hl"}
+ {COLOR_MENU_HL, "menu-hl"},
+ {COLOR_ERROR_TEXT, "error-text"},
+ {COLOR_ERROR_BG, "error-bg"},
+ {COLOR_ERROR_BORDER, "error-border"}
};
static ColorSetting color_setting_from_str(char const *str) {