mirror of
https://github.com/thomasjsn/hugo-theme-hello-friend.git
synced 2024-11-15 04:45:08 +01:00
17 lines
513 B
JavaScript
17 lines
513 B
JavaScript
// Toggle theme
|
|
|
|
const getTheme = window.localStorage && window.localStorage.getItem('theme')
|
|
const themeToggle = document.querySelector('.theme-toggle')
|
|
const isDark = getTheme === 'dark' || getTheme === null
|
|
|
|
document.body.classList.toggle('dark-theme', isDark)
|
|
|
|
themeToggle.addEventListener('click', () => {
|
|
document.body.classList.toggle('dark-theme')
|
|
window.localStorage &&
|
|
window.localStorage.setItem(
|
|
'theme',
|
|
document.body.classList.contains('dark-theme') ? 'dark' : 'light',
|
|
)
|
|
})
|