Reordered fg/bg statusbar color options
Options are now all fg, bg for each variant.
This commit is contained in:
parent
69f729dbe5
commit
244d2753df
@ -792,46 +792,46 @@ def data(readonly=False):
|
|||||||
SettingValue(typ.QssColor(), '#ff4444'),
|
SettingValue(typ.QssColor(), '#ff4444'),
|
||||||
"Foreground color of the matched text in the completion."),
|
"Foreground color of the matched text in the completion."),
|
||||||
|
|
||||||
('statusbar.bg',
|
|
||||||
SettingValue(typ.QssColor(), 'black'),
|
|
||||||
"Foreground color of the statusbar."),
|
|
||||||
|
|
||||||
('statusbar.fg',
|
('statusbar.fg',
|
||||||
SettingValue(typ.QssColor(), 'white'),
|
SettingValue(typ.QssColor(), 'white'),
|
||||||
"Foreground color of the statusbar."),
|
"Foreground color of the statusbar."),
|
||||||
|
|
||||||
('statusbar.bg.error',
|
('statusbar.bg',
|
||||||
SettingValue(typ.QssColor(), 'red'),
|
SettingValue(typ.QssColor(), 'black'),
|
||||||
"Background color of the statusbar if there was an error."),
|
"Foreground color of the statusbar."),
|
||||||
|
|
||||||
('statusbar.fg.error',
|
('statusbar.fg.error',
|
||||||
SettingValue(typ.QssColor(), 'white'),
|
SettingValue(typ.QssColor(), 'white'),
|
||||||
"Foreground color of the statusbar if there was an error."),
|
"Foreground color of the statusbar if there was an error."),
|
||||||
|
|
||||||
('statusbar.bg.warning',
|
('statusbar.bg.error',
|
||||||
SettingValue(typ.QssColor(), 'darkorange'),
|
SettingValue(typ.QssColor(), 'red'),
|
||||||
"Background color of the statusbar if there is a warning."),
|
"Background color of the statusbar if there was an error."),
|
||||||
|
|
||||||
('statusbar.fg.warning',
|
('statusbar.fg.warning',
|
||||||
SettingValue(typ.QssColor(), 'white'),
|
SettingValue(typ.QssColor(), 'white'),
|
||||||
"Foreground color of the statusbar if there is a warning."),
|
"Foreground color of the statusbar if there is a warning."),
|
||||||
|
|
||||||
('statusbar.bg.prompt',
|
('statusbar.bg.warning',
|
||||||
SettingValue(typ.QssColor(), 'darkblue'),
|
SettingValue(typ.QssColor(), 'darkorange'),
|
||||||
"Background color of the statusbar if there is a prompt."),
|
"Background color of the statusbar if there is a warning."),
|
||||||
|
|
||||||
('statusbar.fg.prompt',
|
('statusbar.fg.prompt',
|
||||||
SettingValue(typ.QssColor(), 'white'),
|
SettingValue(typ.QssColor(), 'white'),
|
||||||
"Foreground color of the statusbar if there is a prompt."),
|
"Foreground color of the statusbar if there is a prompt."),
|
||||||
|
|
||||||
('statusbar.bg.insert',
|
('statusbar.bg.prompt',
|
||||||
SettingValue(typ.QssColor(), 'darkgreen'),
|
SettingValue(typ.QssColor(), 'darkblue'),
|
||||||
"Background color of the statusbar in insert mode."),
|
"Background color of the statusbar if there is a prompt."),
|
||||||
|
|
||||||
('statusbar.fg.insert',
|
('statusbar.fg.insert',
|
||||||
SettingValue(typ.QssColor(), 'white'),
|
SettingValue(typ.QssColor(), 'white'),
|
||||||
"Foreground color of the statusbar in insert mode."),
|
"Foreground color of the statusbar in insert mode."),
|
||||||
|
|
||||||
|
('statusbar.bg.insert',
|
||||||
|
SettingValue(typ.QssColor(), 'darkgreen'),
|
||||||
|
"Background color of the statusbar in insert mode."),
|
||||||
|
|
||||||
('statusbar.progress.bg',
|
('statusbar.progress.bg',
|
||||||
SettingValue(typ.QssColor(), 'white'),
|
SettingValue(typ.QssColor(), 'white'),
|
||||||
"Background color of the progress bar."),
|
"Background color of the progress bar."),
|
||||||
@ -863,22 +863,22 @@ def data(readonly=False):
|
|||||||
SettingValue(typ.QtColor(), 'white'),
|
SettingValue(typ.QtColor(), 'white'),
|
||||||
"Foreground color of unselected odd tabs."),
|
"Foreground color of unselected odd tabs."),
|
||||||
|
|
||||||
('tabs.fg.even',
|
|
||||||
SettingValue(typ.QtColor(), 'white'),
|
|
||||||
"Foreground color of unselected even tabs."),
|
|
||||||
|
|
||||||
('tabs.fg.selected',
|
|
||||||
SettingValue(typ.QtColor(), 'white'),
|
|
||||||
"Foreground color of selected tabs."),
|
|
||||||
|
|
||||||
('tabs.bg.odd',
|
('tabs.bg.odd',
|
||||||
SettingValue(typ.QtColor(), 'grey'),
|
SettingValue(typ.QtColor(), 'grey'),
|
||||||
"Background color of unselected odd tabs."),
|
"Background color of unselected odd tabs."),
|
||||||
|
|
||||||
|
('tabs.fg.even',
|
||||||
|
SettingValue(typ.QtColor(), 'white'),
|
||||||
|
"Foreground color of unselected even tabs."),
|
||||||
|
|
||||||
('tabs.bg.even',
|
('tabs.bg.even',
|
||||||
SettingValue(typ.QtColor(), 'darkgrey'),
|
SettingValue(typ.QtColor(), 'darkgrey'),
|
||||||
"Background color of unselected even tabs."),
|
"Background color of unselected even tabs."),
|
||||||
|
|
||||||
|
('tabs.fg.selected',
|
||||||
|
SettingValue(typ.QtColor(), 'white'),
|
||||||
|
"Foreground color of selected tabs."),
|
||||||
|
|
||||||
('tabs.bg.selected',
|
('tabs.bg.selected',
|
||||||
SettingValue(typ.QtColor(), 'black'),
|
SettingValue(typ.QtColor(), 'black'),
|
||||||
"Background color of selected tabs."),
|
"Background color of selected tabs."),
|
||||||
@ -907,10 +907,6 @@ def data(readonly=False):
|
|||||||
SettingValue(typ.CssColor(), 'black'),
|
SettingValue(typ.CssColor(), 'black'),
|
||||||
"Font color for hints."),
|
"Font color for hints."),
|
||||||
|
|
||||||
('hints.fg.match',
|
|
||||||
SettingValue(typ.CssColor(), 'green'),
|
|
||||||
"Font color for the matched part of hints."),
|
|
||||||
|
|
||||||
('hints.bg',
|
('hints.bg',
|
||||||
SettingValue(
|
SettingValue(
|
||||||
typ.CssColor(), '-webkit-gradient(linear, left top, '
|
typ.CssColor(), '-webkit-gradient(linear, left top, '
|
||||||
@ -918,6 +914,10 @@ def data(readonly=False):
|
|||||||
'color-stop(100%,#FFC542))'),
|
'color-stop(100%,#FFC542))'),
|
||||||
"Background color for hints."),
|
"Background color for hints."),
|
||||||
|
|
||||||
|
('hints.fg.match',
|
||||||
|
SettingValue(typ.CssColor(), 'green'),
|
||||||
|
"Font color for the matched part of hints."),
|
||||||
|
|
||||||
('downloads.fg',
|
('downloads.fg',
|
||||||
SettingValue(typ.QtColor(), '#ffffff'),
|
SettingValue(typ.QtColor(), '#ffffff'),
|
||||||
"Foreground color for downloads."),
|
"Foreground color for downloads."),
|
||||||
|
Loading…
Reference in New Issue
Block a user