summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-17 10:39:53 -0600
committerAiden Cline <[email protected]>2025-11-17 10:39:53 -0600
commit7f0b2ce1ac64cbc4a79c746ddf0d35dece9f72b7 (patch)
treeed1827e0f8474b21665b46c6566e7fc1fbb9a0eb /packages
parent0a2d7af179cb292a276a526f03e9c0f7e7777888 (diff)
downloadopencode-7f0b2ce1ac64cbc4a79c746ddf0d35dece9f72b7.tar.gz
opencode-7f0b2ce1ac64cbc4a79c746ddf0d35dece9f72b7.zip
Reapply "fix: system theme background to use 'none' for terminal transparency" (#4415)
This reverts commit a5365ce294c57a0d913e949ec15370b37eba763b.
Diffstat (limited to 'packages')
-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],