Browse Source

Revert "fix: system theme background to use 'none' for terminal transparency" (#4415)

Aiden Cline 3 months ago
parent
commit
a5365ce294
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/opencode/src/cli/cmd/tui/context/theme.tsx

+ 2 - 2
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 - use 'none' to inherit terminal defaults and transparency
-      background: "none",
+      // Background colors
+      background: bg,
       backgroundPanel: grays[2],
       backgroundElement: grays[3],