summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJensen <[email protected]>2025-11-18 00:22:31 +0800
committerGitHub <[email protected]>2025-11-17 10:22:31 -0600
commitf4a4514a9f8748e0be9d185f8a3a8ba0f30b37b0 (patch)
tree0445c26585752e040d51dc3720be6886aa0685d9
parent154006469c415536cecd83a96a04ed8804d61e15 (diff)
downloadopencode-f4a4514a9f8748e0be9d185f8a3a8ba0f30b37b0.tar.gz
opencode-f4a4514a9f8748e0be9d185f8a3a8ba0f30b37b0.zip
fix: system theme background to use 'none' for terminal transparency (#4408)
-rw-r--r--packages/opencode/src/cli/cmd/tui/context/theme.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/context/theme.tsx b/packages/opencode/src/cli/cmd/tui/context/theme.tsx
index a4a4d876e..0cd9ec702 100644
--- a/packages/opencode/src/cli/cmd/tui/context/theme.tsx
+++ b/packages/opencode/src/cli/cmd/tui/context/theme.tsx
@@ -278,8 +278,8 @@ function generateSystem(colors: TerminalColors, mode: "dark" | "light"): ThemeJs
text: fg,
textMuted,
- // Background colors
- background: bg,
+ // Background colors - use 'none' to inherit terminal defaults and transparency
+ background: "none",
backgroundPanel: grays[2],
backgroundElement: grays[3],