File size: 361 Bytes
944bf22
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
const toggleBtn = document.getElementById("themeToggle");
const body = document.body;
const loader = document.getElementById("loader");

toggleBtn.onclick = () => {
    body.classList.toggle("dark");
    toggleBtn.textContent = body.classList.contains("dark") ? "☀️" : "🌙";
};

function startLoading() {
    loader.style.display = "block";
}