diff options
| author | Aiden Cline <[email protected]> | 2025-11-17 16:03:27 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2025-11-17 16:03:27 -0600 |
| commit | ab072290fc501edf2a9d6f766aedb2511d6fd721 (patch) | |
| tree | 2f2a7cc444502d1678bbe4dd15e8a3d0132187c1 | |
| parent | ad9d83748c01eea1144a2e51a0c72861bc3c438b (diff) | |
| download | opencode-ab072290fc501edf2a9d6f766aedb2511d6fd721.tar.gz opencode-ab072290fc501edf2a9d6f766aedb2511d6fd721.zip | |
Revert "fix: system theme background to use 'none' for terminal transparency (#4408)"
This reverts commit f4a4514a9f8748e0be9d185f8a3a8ba0f30b37b0.
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/context/theme.tsx | 4 |
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 0cd9ec702..a4a4d876e 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 - use 'none' to inherit terminal defaults and transparency - background: "none", + // Background colors + background: bg, backgroundPanel: grays[2], backgroundElement: grays[3], |
