Default to dark theme

This commit is contained in:
Dave Gallant
2023-04-20 20:45:04 -04:00
parent cc92882748
commit b92e4c9d99
58 changed files with 94 additions and 5 deletions

View File

@@ -32,5 +32,5 @@ function toggleTheme() {
}
}
var savedTheme = localStorage.getItem("theme-storage") || "light";
var savedTheme = localStorage.getItem("theme-storage") || "dark";
setTheme(savedTheme);