diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-27 19:47:31 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-27 19:47:31 -0500 |
commit | aea002f290e5eddde98eb394fa7a9145c325fffe (patch) | |
tree | 11533f72e6f56cabf26d02cd5e48d69f666b51f4 /colors.h | |
parent | 4554db338221f8fd1c7b4855b8d5bc50780815d2 (diff) |
buttons (for warn overwrite popup)
Diffstat (limited to 'colors.h')
-rw-r--r-- | colors.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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) { |