// Tweaks panel const TweaksPanel = ({ active, setActive, state, setState, tweaks, setTweaks }) => { if (!active) return null; return (
Tweaks
Accent color
{[ ['#E85D2F', 'Sunset'], ['#D4371A', 'Fire'], ['#2E5C42', 'Forest'], ['#1B4965', 'River'], ['#C28840', 'Amber'], ].map(([c, l]) => (
Hero background
{[ ['#1F3A2B', 'Forest'], ['#1B4965', 'River'], ['#2A2420', 'Night'], ['#4a2a1a', 'Earth'], ].map(([c, l]) => ( ))}
Card corner radius
{['sharp', 'medium', 'rounded'].map(r => ( ))}
Display font
{['Fraunces', 'Instrument Serif', 'Geist'].map(f => ( ))}
); }; Object.assign(window, { TweaksPanel });