const themeToggle = document.getElementById('themeToggle');
const topbar = document.getElementById('topbar')
let isLightMode = false;
themeToggle.addEventListener('click', function() {
if (!isLightMode) {
document.body.style.backgroundColor = '#C8C8C8';
container.style.backgroundColor = "#B0B0B0";
themeToggle.innerHTML = ``;
container.style.color = "#1E1E1E"
isLightMode = true;
let children = container.children;
for (let i = 0; i < children.length; i++) {
children[i].style.color = "#1E1E1E";
}
} else {
let children = container.children;
for (let i = 0; i < children.length; i++) {
children[i].style.color = "#f0f0f0";
}
document.body.style.backgroundColor = '#2a2a2a';
themeToggle.innerHTML = ``;
isLightMode = false;
container.style.backgroundColor = "#4b4b4b";
}
});