summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSam Huckaby <[email protected]>2026-01-26 11:55:43 -0500
committerGitHub <[email protected]>2026-01-26 10:55:43 -0600
commit7fcdbd155bf2fe65703a8aad0ac6a72761763405 (patch)
tree758de5b0c56d1314c2f152cb105a8fb0b4243b45
parent5856ea4e75acdf2910894338561255d53311e4b2 (diff)
downloadopencode-7fcdbd155bf2fe65703a8aad0ac6a72761763405.tar.gz
opencode-7fcdbd155bf2fe65703a8aad0ac6a72761763405.zip
fix(app): Order themes alphabetically (#10698)
-rw-r--r--packages/ui/src/theme/default-themes.ts16
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,
}