Files
stack/apps/web/src/themes/index.ts
Jason Woltje cfd1def4a9
All checks were successful
ci/woodpecker/push/web Pipeline was successful
feat(web): add theme definition system with 5 built-in themes (#493)
Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
2026-02-23 13:59:01 +00:00

19 lines
495 B
TypeScript

export type { ThemeColors, ThemeDefinition, ThemeShadows, ThemeColorKey } from "./types";
export { themeToVariables } from "./types";
export { darkTheme } from "./dark";
export { lightTheme } from "./light";
export { nordTheme } from "./nord";
export { draculaTheme } from "./dracula";
export { solarizedDarkTheme } from "./solarized-dark";
export {
getAllThemes,
getTheme,
getThemeOrDefault,
getDarkThemes,
getLightThemes,
isValidThemeId,
DEFAULT_THEME_ID,
} from "./registry";