diff options
| author | Fuwn <[email protected]> | 2024-06-06 08:24:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-06 08:24:45 -0700 |
| commit | feea58d59451281afefbcda3074f2fa130d30c98 (patch) | |
| tree | 9d69d62fd6afaffdbc48ec127f576d6ef9e3cd0b /generate_theme | |
| parent | docs(readme): link to generate_theme script (diff) | |
| download | zed-theme-wal-feea58d59451281afefbcda3074f2fa130d30c98.tar.xz zed-theme-wal-feea58d59451281afefbcda3074f2fa130d30c98.zip | |
feat(generate_theme): update background and highlight rules
Diffstat (limited to 'generate_theme')
| -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}", |