summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/themes/theme-manager.test.ts
diff options
context:
space:
mode:
authorMiguel Solorio <[email protected]>2025-07-23 15:39:22 -0700
committerGitHub <[email protected]>2025-07-23 22:39:22 +0000
commit2e28bb90a00ad415d453a2ec868faa78679602f0 (patch)
treee94a960be7d61a0982ba4e997442a6afeda63082 /packages/cli/src/ui/themes/theme-manager.test.ts
parente21b5c95aaf801da2539ebbc53f0fd3cf45b7ed2 (diff)
Update diff colors (#4747)
Co-authored-by: Jacob Richman <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/themes/theme-manager.test.ts')
-rw-r--r--packages/cli/src/ui/themes/theme-manager.test.ts10
1 files changed, 6 insertions, 4 deletions
diff --git a/packages/cli/src/ui/themes/theme-manager.test.ts b/packages/cli/src/ui/themes/theme-manager.test.ts
index 5bb48167..6f9565a5 100644
--- a/packages/cli/src/ui/themes/theme-manager.test.ts
+++ b/packages/cli/src/ui/themes/theme-manager.test.ts
@@ -23,10 +23,12 @@ const validCustomTheme: CustomTheme = {
AccentPurple: '#8B5CF6',
AccentCyan: '#06B6D4',
AccentGreen: '#3CA84B',
- AccentYellow: '#D5A40A',
- AccentRed: '#DD4C4C',
- Comment: '#008000',
- Gray: '#B7BECC',
+ AccentYellow: 'yellow',
+ AccentRed: 'red',
+ DiffAdded: 'green',
+ DiffRemoved: 'red',
+ Comment: 'gray',
+ Gray: 'gray',
};
describe('ThemeManager', () => {