summaryrefslogtreecommitdiff
path: root/media/js/theme.js
blob: 98d5572ee94fdf0e64b843c96d4f4c42c74cc325 (plain)
1
2
3
4
5
6
7
8
9
10
let theme = 'light';
if (localStorage.getItem('theme')) {
  if (localStorage.getItem('theme') === 'dark') {
    theme = 'dark';
    document.documentElement.setAttribute('data-theme', 'dark');
  }
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
  theme = 'dark';
  document.documentElement.setAttribute('data-theme', 'dark');
}