diff options
| author | Sam Huckaby <[email protected]> | 2026-01-26 11:55:43 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-26 10:55:43 -0600 |
| commit | 7fcdbd155bf2fe65703a8aad0ac6a72761763405 (patch) | |
| tree | 758de5b0c56d1314c2f152cb105a8fb0b4243b45 | |
| parent | 5856ea4e75acdf2910894338561255d53311e4b2 (diff) | |
| download | opencode-7fcdbd155bf2fe65703a8aad0ac6a72761763405.tar.gz opencode-7fcdbd155bf2fe65703a8aad0ac6a72761763405.zip | |
fix(app): Order themes alphabetically (#10698)
| -rw-r--r-- | packages/ui/src/theme/default-themes.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/ui/src/theme/default-themes.ts b/packages/ui/src/theme/default-themes.ts index 88dffeb3f..4d44c3b01 100644 --- a/packages/ui/src/theme/default-themes.ts +++ b/packages/ui/src/theme/default-themes.ts @@ -33,18 +33,18 @@ export const auraTheme = auraThemeJson as DesktopTheme export const DEFAULT_THEMES: Record<string, DesktopTheme> = { "oc-1": oc1Theme, - tokyonight: tokyonightTheme, + aura: auraTheme, + ayu: ayuTheme, + carbonfox: carbonfoxTheme, + catppuccin: catppuccinTheme, dracula: draculaTheme, + gruvbox: gruvboxTheme, monokai: monokaiTheme, - solarized: solarizedTheme, + nightowl: nightowlTheme, nord: nordTheme, - catppuccin: catppuccinTheme, - ayu: ayuTheme, onedarkpro: oneDarkProTheme, shadesofpurple: shadesOfPurpleTheme, - nightowl: nightowlTheme, + solarized: solarizedTheme, + tokyonight: tokyonightTheme, vesper: vesperTheme, - carbonfox: carbonfoxTheme, - gruvbox: gruvboxTheme, - aura: auraTheme, } |
