diff options
author | Marvin Borner | 2020-05-31 19:44:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-31 19:44:36 +0200 |
commit | 75822efee46fc31729ec354ceac14358d770d6a5 (patch) | |
tree | 2b5272265cc49d006e3054c585239643994d123f /.config/qutebrowser/config.py | |
parent | d2fd3e99bd7182e8e60a9a9ad548b0aefb5670ef (diff) |
Fixed tab coloring
Diffstat (limited to '.config/qutebrowser/config.py')
-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 1fc596a..4ea3438 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 = base00 +c.colors.tabs.odd.bg = base02 # Foreground color of unselected even tabs. c.colors.tabs.even.fg = base05 # Background color of unselected even tabs. -c.colors.tabs.even.bg = base00 +c.colors.tabs.even.bg = base02 # 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 = base02 +c.colors.tabs.selected.odd.bg = base00 # 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 = base02 +c.colors.tabs.selected.even.bg = base00 # Background color for webpages if unset (or empty to use the theme's # color). |