summaryrefslogtreecommitdiff
path: root/examples/docs/public/theme.js
blob: d75d0bf993aaee5707db6483a95af13218a1a315 (plain) (blame)
1
2
3
4
5
6
7
8
(() => {
  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');
  }
})();