From 5b25ee84302b4fba38ac5dfe4ecaddd2437b892d Mon Sep 17 00:00:00 2001 From: James Long Date: Wed, 26 Aug 2026 17:30:23 -0400 Subject: [PATCH] style(tui): brighten embedded terminal palette (#45393) --- packages/tui/src/component/terminal-pane.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tui/src/component/terminal-pane.tsx b/packages/tui/src/component/terminal-pane.tsx index 9fef6cb12c1..181f69c3979 100644 --- a/packages/tui/src/component/terminal-pane.tsx +++ b/packages/tui/src/component/terminal-pane.tsx @@ -330,8 +330,8 @@ function sameSize(first: TerminalSize | undefined, second: TerminalSize | undefi } function terminalPalette(theme: ResolvedThemeTokens, mode: "dark" | "light", background: RGBA) { - const base = mode === "dark" ? 500 : 700 - const bright = mode === "dark" ? 300 : 500 + const base = mode === "dark" ? 200 : 800 + const bright = mode === "dark" ? 100 : 900 const colors = [ background, theme.text.feedback.error.default,