Back to old colors.

This commit is contained in:
Bartek Stalewski 2023-02-09 01:42:43 +01:00
parent 124a9bed38
commit a0bd08d063

View File

@ -104,8 +104,8 @@ layouts = [
]
widget_defaults = dict(
foreground="#f8f8f2",
background="#272822",
foreground='#c7c7c7',
background='#272822',
font="RobotoMono Nerd Font Medium",
fontsize=14,
)
@ -119,7 +119,7 @@ screens = [
top=bar.Bar(
[
widget.GroupBox(
active='#f3ffff',
active='#feffff',
disable_drag=True,
highlight_method='block',
rounded=False,
@ -137,26 +137,26 @@ screens = [
background_low='#272822',
background_urgent='#770000',
foreground='#000000',
foreground_low="#f8f8f2",
foreground_urgent='#ffffff',
foreground_low='#c7c7c7',
foreground_urgent='#feffff',
font='RobotoMono Nerd Font Bold',
parse_text=yubikey_replace,
),
widget.GenPollCommand(
background='#005577',
foreground='#ffffff',
foreground='#feffff',
update_interval=1,
cmd="sb-mail",
),
widget.GenPollCommand(
background='#770000',
foreground='#ffffff',
foreground='#feffff',
update_interval=1,
cmd="sb-volume",
),
widget.GenPollCommand(
background='#770000',
foreground='#ffffff',
foreground='#feffff',
update_interval=1,
cmd="sb-network",
),
@ -168,7 +168,7 @@ screens = [
full_char='\uf102',
update_interval=1,
low_background='#770000',
low_foreground='#ffffff',
low_foreground='#feffff',
low_percentage=0.2,
),
widget.Clock(
@ -195,7 +195,7 @@ floating_layout = layout.Floating(
*layout.Floating.default_float_rules,
Match(wm_class='Authenticator'),
],
border_focus='#ffffff',
border_focus='#feffff',
border_normal="#272822",
border_width=2,
)