hugo-toha/assets/scripts/core/theme-scheme.js
David G. Simmons 56787e0963
oops!
2024-10-21 16:51:16 -04:00

9 lines
338 B
JavaScript

let theme = localStorage.getItem('theme-scheme') || localStorage.getItem('darkmode:color-scheme') || 'light'
if (theme === 'system') {
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
theme = 'dark'
} else {
theme = 'light'
}
}
document.documentElement.setAttribute('data-theme', theme)