diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-06 13:35:31 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-06 13:35:31 -0500 |
commit | 9e055b2e25455fc4fa0376495ccc9335059f3131 (patch) | |
tree | ef9e2362dece86193c07d8e1fcf40923b8a8caca /colors.h | |
parent | 306505e714b7caf146b8ec8386b407d57555563d (diff) |
start open menu
Diffstat (limited to 'colors.h')
-rw-r--r-- | colors.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,6 +7,7 @@ ENUM_U16 { COLOR_BORDER, COLOR_TEXT, COLOR_SELECTION_BG, + COLOR_MENU_BG, COLOR_COUNT } ENUM_U16_END(ColorSetting); @@ -23,7 +24,8 @@ static ColorName const color_names[COLOR_COUNT] = { {COLOR_CURSOR_LINE_BG, "cursor-line-bg"}, {COLOR_BORDER, "border"}, {COLOR_TEXT, "text"}, - {COLOR_SELECTION_BG, "selection-bg"} + {COLOR_SELECTION_BG, "selection-bg"}, + {COLOR_MENU_BG, "menu-bg"} }; static ColorSetting color_setting_from_str(char const *str) { |