Skip to content

Commit

Permalink
active tab adjustment (#42)
Browse files Browse the repository at this point in the history
* active tab is mixed with accent

* bump for next version
  • Loading branch information
tecandrew authored Nov 11, 2024
1 parent d7b5aa2 commit 55a7fe0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id = "catppuccin"
name = "Catppuccin Themes"
schema_version = 1
version = "0.2.12"
version = "0.2.13"
authors = ["Andrew Tec <andrewtec@enjoi.dev>"]
description = "🦀 Soothing pastel theme for Zed"
repository = "https://github.com/catppuccin/zed"
8 changes: 4 additions & 4 deletions themes/catppuccin-mauve.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"toolbar.background": "#eff1f5",
"tab_bar.background": "#dce0e8",
"tab.inactive_background": "#e6e9ef",
"tab.active_background": "#eff1f5",
"tab.active_background": "#dfd5f4",
"search.match_background": "#17929933",
"panel.background": "#e6e9ef",
"panel.focused_border": "#4c4f69",
Expand Down Expand Up @@ -436,7 +436,7 @@
"toolbar.background": "#303446",
"tab_bar.background": "#232634",
"tab.inactive_background": "#292c3c",
"tab.active_background": "#303446",
"tab.active_background": "#47445e",
"search.match_background": "#81c8be33",
"panel.background": "#292c3c",
"panel.focused_border": "#c6d0f5",
Expand Down Expand Up @@ -830,7 +830,7 @@
"toolbar.background": "#24273a",
"tab_bar.background": "#181926",
"tab.inactive_background": "#1e2030",
"tab.active_background": "#24273a",
"tab.active_background": "#3d3956",
"search.match_background": "#8bd5ca33",
"panel.background": "#1e2030",
"panel.focused_border": "#cad3f5",
Expand Down Expand Up @@ -1224,7 +1224,7 @@
"toolbar.background": "#1e1e2e",
"tab_bar.background": "#11111b",
"tab.inactive_background": "#181825",
"tab.active_background": "#1e1e2e",
"tab.active_background": "#38334c",
"search.match_background": "#94e2d533",
"panel.background": "#181825",
"panel.focused_border": "#cdd6f4",
Expand Down
8 changes: 4 additions & 4 deletions themes/catppuccin-no-italics-mauve.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"toolbar.background": "#eff1f5",
"tab_bar.background": "#dce0e8",
"tab.inactive_background": "#e6e9ef",
"tab.active_background": "#eff1f5",
"tab.active_background": "#dfd5f4",
"search.match_background": "#17929933",
"panel.background": "#e6e9ef",
"panel.focused_border": "#4c4f69",
Expand Down Expand Up @@ -436,7 +436,7 @@
"toolbar.background": "#303446",
"tab_bar.background": "#232634",
"tab.inactive_background": "#292c3c",
"tab.active_background": "#303446",
"tab.active_background": "#47445e",
"search.match_background": "#81c8be33",
"panel.background": "#292c3c",
"panel.focused_border": "#c6d0f5",
Expand Down Expand Up @@ -830,7 +830,7 @@
"toolbar.background": "#24273a",
"tab_bar.background": "#181926",
"tab.inactive_background": "#1e2030",
"tab.active_background": "#24273a",
"tab.active_background": "#3d3956",
"search.match_background": "#8bd5ca33",
"panel.background": "#1e2030",
"panel.focused_border": "#cad3f5",
Expand Down Expand Up @@ -1224,7 +1224,7 @@
"toolbar.background": "#1e1e2e",
"tab_bar.background": "#11111b",
"tab.inactive_background": "#181825",
"tab.active_background": "#1e1e2e",
"tab.active_background": "#38334c",
"search.match_background": "#94e2d533",
"panel.background": "#181825",
"panel.focused_border": "#cdd6f4",
Expand Down
2 changes: 1 addition & 1 deletion zed.tera
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ whiskers:
"toolbar.background": "#{{c.base.hex}}",
"tab_bar.background": "#{{c.crust.hex}}",
"tab.inactive_background": "#{{c.mantle.hex}}",
"tab.active_background": "#{{c.base.hex}}",
"tab.active_background": "#{{c.base | mix(color=c[accent], amount=0.85) | get(key="hex") }}",
"search.match_background": "#{{ c.teal | mod(opacity=0.2) | get(key="hex") }}",
"panel.background": "#{{c.mantle.hex}}",
"panel.focused_border": "#{{c.text.hex}}",
Expand Down

0 comments on commit 55a7fe0

Please sign in to comment.