// inital check for systems which do not have light or dark mode state.get.current() var nightTabData = JSON.parse(localStorage.getItem("nightTab")); if (!document.querySelector("html").classList.contains("is-ready")) { if (window.matchMedia("(prefers-color-scheme:light)").matches) { if (nightTabData) { if (nightTabData.state.theme.style == "dark") { document.querySelector("html").setAttribute("style", "background-color:rgb(0,0,0)"); }; }; } else if (window.matchMedia("(prefers-color-scheme:dark)").matches) { if (nightTabData) { if (nightTabData.state.theme.style == "light") { document.querySelector("html").setAttribute("style", "background-color:rgb(255,255,255)"); }; }; }; };