UNPKG

react-vite-themes

Version:

A test/experimental React theme system created for learning purposes. Features atomic design components, SCSS variables, and dark/light theme support. Not intended for production use.

11 lines 346 B
export interface ThemeContextType { theme: 'light' | 'dark'; isSystemTheme: boolean; toggleTheme: () => void; setSystemTheme: () => void; setLightTheme: () => void; setDarkTheme: () => void; } export type ThemeVariant = 'light' | 'dark' | 'custom'; export type Theme = 'light' | 'dark'; //# sourceMappingURL=theme.d.ts.map