1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 04:45:22 -04:00

fix theme preference restoring

This commit is contained in:
Jake Jarvis 2023-07-06 11:22:13 -04:00
parent b13c8259b3
commit a3a854b4ac
Signed by: jake
GPG Key ID: 2B0C9CF251E69A39

View File

@ -14,7 +14,7 @@ export const clientScript = () => {
// restore the local storage preference if it's set, otherwise test CSS media query for browser dark mode preference
// https://stackoverflow.com/a/57795495/1438024
const newTheme = (pref && pref === "dark") || window.matchMedia("__MEDIA_QUERY__").matches ? 1 : 0;
const newTheme = (pref && pref === "dark") ?? window.matchMedia("__MEDIA_QUERY__").matches ? 1 : 0;
// remove both `classNames` to start fresh...
classList.remove(classNames[0], classNames[1]);