17 lines
452 B
TypeScript
17 lines
452 B
TypeScript
import { lightTheme } from './light';
|
|
import { vibrantTheme } from './vibrant';
|
|
import { corporateTheme } from './corporate';
|
|
import { darkTheme } from './dark';
|
|
|
|
export const themes = {
|
|
light: lightTheme,
|
|
vibrant: vibrantTheme,
|
|
corporate: corporateTheme,
|
|
dark: darkTheme,
|
|
} as const;
|
|
|
|
export type ThemeName = keyof typeof themes;
|
|
export type Theme = (typeof themes)[ThemeName];
|
|
|
|
export { lightTheme, vibrantTheme, corporateTheme, darkTheme };
|