2022-12-15 01:43:00 +00:00
|
|
|
// license: https://www.w3schools.com/howto/howto_js_toggle_dark_mode.asp
|
|
|
|
function darkTheme() {
|
2022-12-14 23:56:16 +00:00
|
|
|
var element = document.body;
|
|
|
|
element.classList.toggle("dark-mode");
|
2022-12-15 01:43:00 +00:00
|
|
|
var button = document.querySelector("button")
|
|
|
|
button.classList.add("dark-modeBtn")
|
|
|
|
}
|
|
|
|
|
|
|
|
function lightTheme() {
|
|
|
|
var body = document.querySelector("body")
|
|
|
|
body.classList.remove("dark-mode")
|
|
|
|
var button = document.querySelector("button")
|
|
|
|
button.classList.remove("dark-modeBtn")
|
2022-12-14 23:56:16 +00:00
|
|
|
}
|