diff options
| -rwxr-xr-x | generate_theme | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/generate_theme b/generate_theme index 7715748..591412e 100755 --- a/generate_theme +++ b/generate_theme @@ -80,14 +80,18 @@ cat <<EOF >"${THEME_FILE}" "icon.disabled": "${color8}", "icon.placeholder": "${color8}", "icon.accent": "${color10}", - "status_bar.background": "${color0}", - "title_bar.background": "${color0}", + "status_bar.background": "${background}", + "title_bar.background": "${background}", "toolbar.background": "${background}", - "tab_bar.background": "${color0}", - "tab.inactive_background": "${color0}", - "tab.active_background": "${background}", + "tab_bar.background": "${background}", + "tab.inactive_background": "${background}", + "tab.active_background": "${background}10", + "tab.active_foreground": "${foreground}", + "tab.inactive_foreground": "${foreground}", + "tab.unfocused_active_foreground": "${color1}", + "tab.unfocused_inactive_foreground": "${background}", "search.match_background": "${color3}", - "panel.background": "${color0}", + "panel.background": "${background}", "panel.focused_border": "${color9}", "pane.focused_border": "${color9}", "pane_group.border": "${color8}", @@ -100,8 +104,8 @@ cat <<EOF >"${THEME_FILE}" "editor.background": "${background}", "editor.gutter.background": "${background}", "editor.subheader.background": "${color0}", - "editor.active_line.background": "${color1}", - "editor.highlighted_line.background": "${color2}", + "editor.active_line.background": "${color3}", + "editor.highlighted_line.background": "${color1}", "editor.line_number": "${color7}", "editor.active_line_number": "${color8}", "editor.invisible": "${color8}", |