hugo-theme-wondermod/assets/js/theme.js

9 lines
289 B
JavaScript
Raw Normal View History

2022-07-22 00:00:36 +02:00
// for now this is assuming default theme is set to dark
// will probably refactor in the future for much better handling
function loadPreferredTheme() {
if (localStorage.getItem("pref-theme") === "light") {
document.body.classList.remove('dark')
}
}
loadPreferredTheme();