mirror of
https://github.com/Alvin-Zilverstand/school.git
synced 2026-04-17 18:46:19 +02:00
3 lines
85 B
JavaScript
3 lines
85 B
JavaScript
|
|
function toggleDarkMode() {
|
||
|
|
document.body.classList.toggle('dark-mode');
|
||
|
|
}
|