diff options
| author | Miguel Solorio <[email protected]> | 2025-05-31 11:10:52 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-31 11:10:52 -0700 |
| commit | cbc1614b8441dc3dcf35cf4f2e6b3c3457045fcb (patch) | |
| tree | f9ca359c87b278d99208f1406dc29b7a1e2606e2 /packages/cli/src/ui/themes/theme-manager.ts | |
| parent | c350fbef7ff63039ed41d4bf97d1c1bcd47afc49 (diff) | |
Update default & ANSI theme names (#637)
Diffstat (limited to 'packages/cli/src/ui/themes/theme-manager.ts')
| -rw-r--r-- | packages/cli/src/ui/themes/theme-manager.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/cli/src/ui/themes/theme-manager.ts b/packages/cli/src/ui/themes/theme-manager.ts index e17fa5b7..2b12a4c1 100644 --- a/packages/cli/src/ui/themes/theme-manager.ts +++ b/packages/cli/src/ui/themes/theme-manager.ts @@ -8,18 +8,19 @@ import { AtomOneDark } from './atom-one-dark.js'; import { Dracula } from './dracula.js'; import { GitHub } from './github.js'; import { GoogleCode } from './googlecode.js'; -import { VS } from './vs.js'; -import { VS2015 } from './vs2015.js'; +import { DefaultLight } from './default-light.js'; +import { DefaultDark } from './default.js'; import { XCode } from './xcode.js'; import { Theme, ThemeType } from './theme.js'; import { ANSI } from './ansi.js'; +import { ANSILight } from './ansi-light.js'; export interface ThemeDisplay { name: string; type: ThemeType; } -export const DEFAULT_THEME: Theme = VS2015; +export const DEFAULT_THEME: Theme = DefaultDark; class ThemeManager { private readonly availableThemes: Theme[]; @@ -29,12 +30,13 @@ class ThemeManager { this.availableThemes = [ AtomOneDark, Dracula, - VS, // Light mode. - VS2015, + DefaultLight, // Light mode. + DefaultDark, GitHub, GoogleCode, XCode, ANSI, + ANSILight, ]; this.activeTheme = DEFAULT_THEME; } @@ -50,10 +52,8 @@ class ThemeManager { return 1; case 'light': return 2; - case 'ansi': - return 3; default: - return 4; + return 3; } }; |
