All checks were successful
ci/woodpecker/push/web Pipeline was successful
Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
19 lines
495 B
TypeScript
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";
|