mirror of
https://github.com/kognise/water.css.git
synced 2025-12-08 15:54:59 +01:00
11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
|
|
document.getElementById('switch').addEventListener('click', () => {
|
||
|
|
const { body } = document
|
||
|
|
const ph = document.getElementById('ph')
|
||
|
|
if (body.className) {
|
||
|
|
body.className = ''
|
||
|
|
ph.src = ph.src.replace('theme=light', 'theme=dark')
|
||
|
|
} else {
|
||
|
|
body.className = 'light'
|
||
|
|
ph.src = ph.src.replace('theme=dark', 'theme=light')
|
||
|
|
}
|
||
|
|
})
|