f4a53d4
1 2 3 4 5 6 7
function toggleTheme() { if (localStorage.getItem("theme") === "light") { setTheme("dark"); return; } setTheme("light"); }