diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index a38025a..e01c1a1 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -130,7 +130,7 @@ const bannerOffset = // Load the hue from local storage const currentDay = new Date().getDay(); - const hue = currentDay === 3 ? 290 : (localStorage.getItem('hue') || configHue); + const hue = currentDay === 0 ? 290 : (localStorage.getItem('hue') || configHue); //const hue = localStorage.getItem('hue') || configHue; document.documentElement.style.setProperty('--hue', hue);