UNPKG

@rfkit/theme

Version:

A flexible light/dark theme switching library supporting custom theme configuration, dynamic switching, and responsive design

12 lines 270 B
export interface ThemeConfig { name: string; dark: string; light: string; [key: string]: string; } export type ThemeConfigs = Array<ThemeConfig>; export declare enum ThemeType { Dark = "dark", Light = "light" } //# sourceMappingURL=types.d.ts.map