// Tweaks panel (shown when edit mode is active)
function TweaksPanel({ theme, themeKey, setThemeKey, visible }) {
if (!visible) return null;
return (
Tweaks
Dirección visual
{Object.entries(THEMES).map(([k, t]) => {
const active = themeKey === k;
return (
);
})}
);
}
window.TweaksPanel = TweaksPanel;