summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/themes/semantic-tokens.ts
diff options
context:
space:
mode:
authorMiguel Solorio <[email protected]>2025-08-15 15:39:54 -0700
committerGitHub <[email protected]>2025-08-15 22:39:54 +0000
commit3c0af3654ac5491e79c6f9b55de5debf0e1e13c1 (patch)
tree51eabe9544038b06b0c0a78d31dfa25232de3754 /packages/cli/src/ui/themes/semantic-tokens.ts
parent5246aa11f49108a22d4ba306a49b1af79153cac1 (diff)
Update semantic color tokens (#6253)
Co-authored-by: jacob314 <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/themes/semantic-tokens.ts')
-rw-r--r--packages/cli/src/ui/themes/semantic-tokens.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/cli/src/ui/themes/semantic-tokens.ts b/packages/cli/src/ui/themes/semantic-tokens.ts
index 56430304..a2079934 100644
--- a/packages/cli/src/ui/themes/semantic-tokens.ts
+++ b/packages/cli/src/ui/themes/semantic-tokens.ts
@@ -25,8 +25,6 @@ export interface SemanticColors {
focused: string;
};
ui: {
- comment: string;
- symbol: string;
gradient: string[] | undefined;
};
status: {
@@ -55,8 +53,6 @@ export const lightSemanticColors: SemanticColors = {
focused: lightTheme.AccentBlue,
},
ui: {
- comment: lightTheme.Comment,
- symbol: lightTheme.Gray,
gradient: lightTheme.GradientColors,
},
status: {
@@ -85,8 +81,6 @@ export const darkSemanticColors: SemanticColors = {
focused: darkTheme.AccentBlue,
},
ui: {
- comment: darkTheme.Comment,
- symbol: darkTheme.Gray,
gradient: darkTheme.GradientColors,
},
status: {
@@ -115,8 +109,6 @@ export const ansiSemanticColors: SemanticColors = {
focused: ansiTheme.AccentBlue,
},
ui: {
- comment: ansiTheme.Comment,
- symbol: ansiTheme.Gray,
gradient: ansiTheme.GradientColors,
},
status: {