blob: 91abd5504f30bbbc31b67fe465ddbbdd46d0d462 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
(() => {
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');
}
})();
|