import { Palette } from 'lucide-react'; interface ThemeSwitcherProps { currentTheme: string; onThemeChange: (theme: string) => void; } const themes = [ { id: 'bokuseki', name: '墨跡 Bokuseki', colors: ['#b83a1e', '#8b2500'], description: 'Ink Traces — shu vermillion', gradient: 'linear-gradient(135deg, #b83a1e 0%, #8b2500 100%)', }, { id: 'kin', name: '金 Kin', colors: ['#b8860b', '#8b6a08'], description: 'Gold Leaf — kinpaku', gradient: 'linear-gradient(135deg, #b8860b 0%, #8b6a08 100%)', }, { id: 'ai', name: '藍 Ai', colors: ['#2a4e68', '#1a3548'], description: 'Indigo — deep blue', gradient: 'linear-gradient(135deg, #2a4e68 0%, #1a3548 100%)', }, { id: 'matcha', name: '抹茶 Matcha', colors: ['#4f6840', '#3a5030'], description: 'Green tea — moss', gradient: 'linear-gradient(135deg, #4f6840 0%, #3a5030 100%)', }, ]; export function ThemeSwitcher({ currentTheme, onThemeChange, }: ThemeSwitcherProps) { return (
Choose your ink palette