/** * Theme Types * Type definitions for theme management */ export type ThemeMode = 'light' | 'dark' | 'system'; export interface ThemeConfig { mode: ThemeMode; /** Primary color scheme */ primaryColor?: string; /** Custom CSS variables */ cssVariables?: Record; } //# sourceMappingURL=theme-types.d.ts.map