Each theme now has a unique layout: - Light: Standard fixed sidebar - Vibrant: Horizontal top navigation - Corporate: Compact sidebar (expands on hover) - Dark: Floating sidebar with glass effect Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
549 B
TypeScript
18 lines
549 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 type LayoutType = 'sidebar-standard' | 'topnav' | 'sidebar-compact' | 'sidebar-floating';
|
|
|
|
export { lightTheme, vibrantTheme, corporateTheme, darkTheme };
|