diff options
author | Marvin Borner | 2020-05-31 19:50:29 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-31 19:50:29 +0200 |
commit | 90f29bac0a67bb50ab69edbdf9eb1cfea084031c (patch) | |
tree | fc11c8119c90a54f87800b434afc76788739f113 /.config/qutebrowser | |
parent | 75822efee46fc31729ec354ceac14358d770d6a5 (diff) |
Reverted "Fixed tab coloring"
Huh, I guess the tab coloring complied with my dwm config
Diffstat (limited to '.config/qutebrowser')
-rw-r--r-- | .config/qutebrowser/config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 4ea3438..1fc596a 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -238,25 +238,25 @@ c.tabs.indicator.width = 0 c.colors.tabs.odd.fg = base05 # Background color of unselected odd tabs. -c.colors.tabs.odd.bg = base02 +c.colors.tabs.odd.bg = base00 # Foreground color of unselected even tabs. c.colors.tabs.even.fg = base05 # Background color of unselected even tabs. -c.colors.tabs.even.bg = base02 +c.colors.tabs.even.bg = base00 # Foreground color of selected odd tabs. c.colors.tabs.selected.odd.fg = base05 # Background color of selected odd tabs. -c.colors.tabs.selected.odd.bg = base00 +c.colors.tabs.selected.odd.bg = base02 # Foreground color of selected even tabs. c.colors.tabs.selected.even.fg = base05 # Background color of selected even tabs. -c.colors.tabs.selected.even.bg = base00 +c.colors.tabs.selected.even.bg = base02 # Background color for webpages if unset (or empty to use the theme's # color). |