feat(FN-1214): add ember color theme

- Add ember theme to COLOR_THEMES array in types.ts
- Add ember theme CSS variables in styles.css
- Add ember theme swatch preview in ThemeSelector component
- Add ember to validThemes validation in index.html
- Add ThemeSelector tests for ember theme
This commit is contained in:
gsxdsm
2026-04-09 09:28:52 -07:00
parent f6b2a742c5
commit 914e80add3
5 changed files with 71 additions and 1 deletions

View File

@@ -54,6 +54,7 @@ export const COLOR_THEMES = [
"espresso",
"mars",
"poimandres",
"ember",
] as const;
export type ColorTheme = (typeof COLOR_THEMES)[number];