astro/docs/public/theme.js

13 lines
300 B
JavaScript
Raw Normal View History

2021-07-15 18:13:35 +00:00
(() => {
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');
}
})();