Просмотр исходного кода

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

This reverts commit f4a4514a9f8748e0be9d185f8a3a8ba0f30b37b0.
Aiden Cline 3 месяцев назад
Родитель
Сommit
ab072290fc
1 измененных файлов с 2 добавлено и 2 удалено
  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],