fix STYLES_MONO

This commit is contained in:
Michael Hudson-Doyle 2017-11-24 11:23:26 +13:00
parent b5c07497e8
commit 4bbf2d5eac
1 changed files with 25 additions and 12 deletions

View File

@ -57,16 +57,29 @@ STYLES = [
STYLES_MONO = [
('frame_header', 'white', 'black'),
('frame_footer', 'white', 'black'),
('body', 'white', 'black'),
('info_minor', 'white', 'black'),
('menu_button', '', ''),
('menu_button focus', '', ''),
('button', 'white', 'black'),
('button focus', 'white', 'black'),
('string_input', '', ''),
('string_input focus', '', ''),
('progress_incomplete', '', ''),
('progress_complete', '', ''),
('frame_header', 'white', 'black'),
('frame_footer', 'white', 'black'),
('body', 'white', 'black'),
('done_button', 'white', 'black'),
('danger_button', 'white', 'black'),
('other_button', 'white', 'black'),
('done_button focus', 'black', 'white'),
('danger_button focus', 'black', 'white'),
('other_button focus', 'black', 'white'),
('menu_button', 'white', 'black'),
('menu_button focus', 'black', 'white'),
('info_primary', 'white', 'black'),
('info_minor', 'white', 'black'),
('info_error', 'white', 'black'),
('string_input', 'white', 'black'),
('string_input focus', 'black', 'white'),
('progress_incomplete', 'white', 'black'),
('progress_complete', 'black', 'white'),
('scrollbar_fg', 'white', 'black'),
('scrollbar_bg', 'white', 'black'),
]