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 = [ STYLES_MONO = [
('frame_header', 'white', 'black'), ('frame_header', 'white', 'black'),
('frame_footer', 'white', 'black'), ('frame_footer', 'white', 'black'),
('body', 'white', 'black'), ('body', 'white', 'black'),
('info_minor', 'white', 'black'),
('menu_button', '', ''), ('done_button', 'white', 'black'),
('menu_button focus', '', ''), ('danger_button', 'white', 'black'),
('button', 'white', 'black'), ('other_button', 'white', 'black'),
('button focus', 'white', 'black'), ('done_button focus', 'black', 'white'),
('string_input', '', ''), ('danger_button focus', 'black', 'white'),
('string_input focus', '', ''), ('other_button focus', 'black', 'white'),
('progress_incomplete', '', ''),
('progress_complete', '', ''), ('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'),
] ]