[core/theme] Add support for foreground and background colors
Themes can now define "fg" and "bg" attributes that are used for foreground (text) color and background color. see #23
This commit is contained in:
parent
0c7884d170
commit
c52cb99518
6 changed files with 58 additions and 2 deletions
|
@ -53,7 +53,9 @@ class I3BarOutput(object):
|
|||
if suffix:
|
||||
full_text = u"{}{}".format(full_text, suffix)
|
||||
self._widgets.append({
|
||||
u"full_text": u"{}".format(full_text)
|
||||
u"full_text": u"{}".format(full_text),
|
||||
"color": self._theme.fg(widget),
|
||||
"background": self._theme.bg(widget),
|
||||
})
|
||||
|
||||
def begin(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue