From 672a03d4e985be75f55138cfff66983974dfb440 Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Wed, 9 Sep 2026 14:02:59 -0700 Subject: [PATCH] some tweaks to color picker --- _includes/footer.njk | 2 +- js/theme.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_includes/footer.njk b/_includes/footer.njk index 8f59dfa2..878961b8 100644 --- a/_includes/footer.njk +++ b/_includes/footer.njk @@ -31,7 +31,7 @@ light - + diff --git a/js/theme.js b/js/theme.js index f5339ef0..9a63f772 100644 --- a/js/theme.js +++ b/js/theme.js @@ -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; }