UNPKG

@club-employes/utopia

Version:

🎨 Modern Vue 3 design system with multi-brand theming, design tokens, and 30+ components. Supports Club Employés & Gifteo brands with light/dark modes.

12 lines (11 loc) • 287 B
export { default as ThemeProvider } from './ThemeProvider'; export interface ThemeConfig { name: string; mode?: 'light' | 'dark'; cssFile?: string; logo?: string; } export interface ThemeProviderProps { theme: ThemeConfig; } export type ThemeMode = 'light' | 'dark';