mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2025-09-27 00:42:36 +02:00
9 lines
289 B
JavaScript
9 lines
289 B
JavaScript
// 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(); |