const themeToggle = document.getElementById('themeToggle'); let isLightMode = false; themeToggle.addEventListener('click', function() { if (!isLightMode) { /* LIGHT MODE LIGHT MODE LIGHT MODE */ document.body.style.backgroundColor = '#C8C8C8'; container.style.backgroundColor = "#B0B0B0"; themeToggle.innerHTML = ` `; container.style.color = "#1E1E1E" isLightMode = true; document.getElementById('github').innerHTML = ` github [#142]Created with Sketch. `; let children = container.children; for (let i = 0; i < children.length; i++) { children[i].style.color = "#1E1E1E"; } rmbReset.style.backgroundColor = "#1E1E1E"; lmbReset.style.backgroundColor = "#1E1E1E"; rmbReset.style.color = "#b0b0b0"; lmbReset.style.color = "#b0b0b0"; } else { /* DARK MODE DARK MODE DARK MODE */ 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"; document.getElementById('github').innerHTML = ` github [#142]Created with Sketch. `; rmbReset.style.backgroundColor = "#b0b0b0"; lmbReset.style.backgroundColor = "#b0b0b0"; rmbReset.style.color = "#141414"; lmbReset.style.color = "#141414"; } });