From 6c1373c33212e26521701acf73c0398721b3a881 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Fri, 15 Aug 2025 20:18:31 -0700 Subject: Revert "Update semantic color tokens" (#6365) --- packages/cli/src/ui/themes/semantic-tokens.ts | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'packages/cli/src/ui/themes/semantic-tokens.ts') diff --git a/packages/cli/src/ui/themes/semantic-tokens.ts b/packages/cli/src/ui/themes/semantic-tokens.ts index a2079934..56430304 100644 --- a/packages/cli/src/ui/themes/semantic-tokens.ts +++ b/packages/cli/src/ui/themes/semantic-tokens.ts @@ -25,6 +25,8 @@ export interface SemanticColors { focused: string; }; ui: { + comment: string; + symbol: string; gradient: string[] | undefined; }; status: { @@ -53,6 +55,8 @@ export const lightSemanticColors: SemanticColors = { focused: lightTheme.AccentBlue, }, ui: { + comment: lightTheme.Comment, + symbol: lightTheme.Gray, gradient: lightTheme.GradientColors, }, status: { @@ -81,6 +85,8 @@ export const darkSemanticColors: SemanticColors = { focused: darkTheme.AccentBlue, }, ui: { + comment: darkTheme.Comment, + symbol: darkTheme.Gray, gradient: darkTheme.GradientColors, }, status: { @@ -109,6 +115,8 @@ export const ansiSemanticColors: SemanticColors = { focused: ansiTheme.AccentBlue, }, ui: { + comment: ansiTheme.Comment, + symbol: ansiTheme.Gray, gradient: ansiTheme.GradientColors, }, status: { -- cgit v1.2.3