style(tui): brighten embedded terminal palette (#45393)

This commit is contained in:
James Long
2026-08-26 17:30:23 -04:00
committed by GitHub
parent df6317d23c
commit 5b25ee8430
+2 -2
View File
@@ -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,