6bca7c83a7
* redesign create astro * add changeset * Use npm start * Update the astro version * Adds the changeset Co-authored-by: Fred Schott <fks@Freds-MBP.attlocal.net> Co-authored-by: Matthew Phillips <matthew@skypack.dev>
8 lines
282 B
JavaScript
8 lines
282 B
JavaScript
(() => {
|
|
const root = document.documentElement;
|
|
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
|
root.classList.add('theme-dark');
|
|
} else {
|
|
root.classList.remove('theme-dark');
|
|
}
|
|
})();
|