-
-
Notifications
You must be signed in to change notification settings - Fork 312
Open
Labels
Description
Implement a theme switcher to toggle between light and dark mode. Store theme preference locally.
Reference Code Example (Electron Setting Save):
localStorage.setItem("theme", selectedTheme);
document.body.classList.toggle("dark", selectedTheme === "dark");
Reactions are currently unavailable