import { Palette } from 'lucide-react'; interface ThemeSwitcherProps { currentTheme: string; onThemeChange: (theme: string) => void; } const themes = [ { id: 'cyber', name: 'Cyber', colors: ['#7c9dd6', '#d4634a'], description: 'Indigo & Vermillion', gradient: 'linear-gradient(135deg, #7c9dd6 0%, #d4634a 100%)', }, { id: 'ocean', name: 'Ocean', colors: ['#7a9e6c', '#8eb280'], description: 'Sage & Moss', gradient: 'linear-gradient(135deg, #7a9e6c 0%, #8eb280 100%)', }, { id: 'forest', name: 'Forest', colors: ['#c9a84c', '#d6b860'], description: 'Gold & Amber', gradient: 'linear-gradient(135deg, #c9a84c 0%, #d6b860 100%)', }, { id: 'sunset', name: 'Sunset', colors: ['#e0a0b8', '#c840a0'], description: 'Sakura & Magenta', gradient: 'linear-gradient(135deg, #e0a0b8 0%, #c840a0 100%)', }, ]; export function ThemeSwitcher({ currentTheme, onThemeChange, }: ThemeSwitcherProps) { return (
Choose your visual style