diff options
| author | Kit Langton <[email protected]> | 2026-03-30 21:06:05 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-30 21:06:05 -0400 |
| commit | bf777298c8b64997bcbb8e52b016e417e7e62114 (patch) | |
| tree | 59777fa16142274bf8b7483bfad946abca9e8aa5 | |
| parent | 93fad99f7f345173250aeb336e8e3c49d46d524e (diff) | |
| download | opencode-bf777298c8b64997bcbb8e52b016e417e7e62114.tar.gz opencode-bf777298c8b64997bcbb8e52b016e417e7e62114.zip | |
fix(theme): darken muted text in catppuccin tui themes (#20161)
3 files changed, 5 insertions, 5 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-frappe.json b/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-frappe.json index 79e56ee9a..61f86a87a 100644 --- a/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-frappe.json +++ b/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-frappe.json @@ -62,8 +62,8 @@ "light": "frappeText" }, "textMuted": { - "dark": "frappeSubtext1", - "light": "frappeSubtext1" + "dark": "frappeOverlay2", + "light": "frappeOverlay2" }, "background": { "dark": "frappeBase", diff --git a/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-macchiato.json b/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-macchiato.json index 6d9827dfe..1cbca3c3f 100644 --- a/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-macchiato.json +++ b/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin-macchiato.json @@ -62,8 +62,8 @@ "light": "macText" }, "textMuted": { - "dark": "macSubtext1", - "light": "macSubtext1" + "dark": "macOverlay2", + "light": "macOverlay2" }, "background": { "dark": "macBase", diff --git a/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin.json b/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin.json index d0fa6a11d..48e825212 100644 --- a/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin.json +++ b/packages/opencode/src/cli/cmd/tui/context/theme/catppuccin.json @@ -63,7 +63,7 @@ "success": { "dark": "darkGreen", "light": "lightGreen" }, "info": { "dark": "darkTeal", "light": "lightTeal" }, "text": { "dark": "darkText", "light": "lightText" }, - "textMuted": { "dark": "darkSubtext1", "light": "lightSubtext1" }, + "textMuted": { "dark": "darkOverlay2", "light": "lightOverlay2" }, "background": { "dark": "darkBase", "light": "lightBase" }, "backgroundPanel": { "dark": "darkMantle", "light": "lightMantle" }, "backgroundElement": { "dark": "darkCrust", "light": "lightCrust" }, |
