some tweaks to color picker
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-09-09 14:02:59 -07:00
parent 0e46e65034
commit 672a03d4e9
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -31,7 +31,7 @@
light
</label>
<input type="radio" id="theme-auto" name="theme" value="auto"/>
<input type="radio" id="theme-auto" name="theme" value="auto" checked/>
<label class="theme-auto" for="theme-auto">
auto
</label>
+3 -3
View File
@@ -23,13 +23,13 @@ var currentThemeValue = localStorage.getItem(THEME);
switch (currentThemeValue) {
case "light":
themeLight.checked = true;
break;
case "auto":
themeAuto.checked = true;
themeAuto.checked = false;
break;
case "dark":
themeDark.checked = true;
themeAuto.checked = false;
break;
case "auto":
default:
themeAuto.checked = true;
}