import { useTheme } from '../theme/ThemeProvider'; /** * Visible theme switcher (requirements FR-3, Functional Design Q1/Q7). * Rendered as a small icon/swatch button in the nav. */ export function ThemeToggle() { const { theme, toggleTheme } = useTheme(); const isPurple = theme === 'purple'; return ( ); }