leandwo / qutebrowser-themes

themes for qutebrowser
21 stars 0 forks source link

onedark selected row bg color not distinguishable enough #2

Open leandwo opened 3 years ago

leandwo commented 3 years ago

It's hard to tell which row is selected in all the UIs, especially the tab list.

Dieterbe commented 2 years ago

i apply this tweak to fix it:

diff --git a/themes/onedark.py b/themes/onedark.py
index ae8f0ea..9cda351 100644
--- a/themes/onedark.py
+++ b/themes/onedark.py
@@ -282,22 +282,22 @@ c.colors.tabs.pinned.odd.fg = bg_lightest
 c.colors.tabs.pinned.selected.even.bg = bg_selection

 # Foreground color of pinned selected even tabs.
-c.colors.tabs.pinned.selected.even.fg = fg_default
+c.colors.tabs.pinned.selected.even.fg = fg_matched_text

 # Background color of pinned selected odd tabs.
 c.colors.tabs.pinned.selected.odd.bg = bg_selection

 # Foreground color of pinned selected odd tabs.
-c.colors.tabs.pinned.selected.odd.fg = fg_default
+c.colors.tabs.pinned.selected.odd.fg = fg_matched_text

 # Foreground color of selected odd tabs.
-c.colors.tabs.selected.odd.fg = fg_default
+c.colors.tabs.selected.odd.fg = fg_matched_text

 # Background color of selected odd tabs.
 c.colors.tabs.selected.odd.bg = bg_selection

 # Foreground color of selected even tabs.
-c.colors.tabs.selected.even.fg = fg_default
+c.colors.tabs.selected.even.fg = fg_matched_text

 # Background color of selected even tabs.
 c.colors.tabs.selected.even.bg = bg_selection