add bannerfont and bannerfontattrs to config.themes_default variable. Fixes #1838
This commit is contained in:
parent
a54d549d57
commit
f6aaac5e57
1 changed files with 11 additions and 10 deletions
|
@ -305,26 +305,27 @@ class Config:
|
||||||
|
|
||||||
themes_default = {
|
themes_default = {
|
||||||
# sorted alphanum
|
# sorted alphanum
|
||||||
'gtk+': [ '', '', '', 'B', '', '','', 'I', '', '', '', '', '','' ],
|
'gtk+': [ '', '', '', 'B', '', '','', 'I', '', '', '', '', '','', '',
|
||||||
|
'B' ],
|
||||||
|
|
||||||
_('green'): [ '', '#94aa8c', '', 'B', '#0000ff', '#eff3e7',
|
_('green'): [ '', '#94aa8c', '', 'B', '#0000ff', '#eff3e7',
|
||||||
'', 'I', '#000000', '', '', '', '',
|
'', 'I', '#000000', '', '', '', '',
|
||||||
'#94aa8c' ],
|
'#94aa8c', '', 'B' ],
|
||||||
|
|
||||||
_('grocery'): [ '', '#6bbe18', '', 'B', '#12125a', '#ceefad',
|
_('grocery'): [ '', '#6bbe18', '', 'B', '#12125a', '#ceefad',
|
||||||
'', 'I', '#000000', '#efb26b', '', '', '',
|
'', 'I', '#000000', '#efb26b', '', '', '',
|
||||||
'#108abd' ],
|
'#108abd', '', 'B' ],
|
||||||
|
|
||||||
_('human'): [ '', '#996442', '', 'B', '#ab5920', '#e3ca94',
|
_('human'): [ '', '#996442', '', 'B', '#ab5920', '#e3ca94',
|
||||||
'', 'I', '#000000', '', '', '', '',
|
'', 'I', '#000000', '', '', '', '',
|
||||||
'#996442' ],
|
'#996442', '', 'B' ],
|
||||||
|
|
||||||
_('marine'): [ '', '#918caa', '', 'B', '', '#e9e7f3',
|
_('marine'): [ '', '#918caa', '', 'B', '', '#e9e7f3',
|
||||||
'', 'I', '#000000', '', '', '', '',
|
'', 'I', '#000000', '', '', '', '',
|
||||||
'#918caa' ],
|
'#918caa', '', 'B' ],
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def foreach(self, cb, data = None):
|
def foreach(self, cb, data = None):
|
||||||
for opt in self.__options:
|
for opt in self.__options:
|
||||||
cb(data, opt, None, self.__options[opt])
|
cb(data, opt, None, self.__options[opt])
|
||||||
|
|
Loading…
Add table
Reference in a new issue