Yo pecador alberto vazquez el
Yo pecador alberto vazquez el
Alberto vazquez en concierto 1!
const negroEnLuzElements = document.querySelectorAll(".negro_en_luz"); // Elementos con la clase negro_en_luz const amarilloEnLuzElements = document.querySelectorAll(".amarillo_en_luz"); // Elementos con la clase amarillo_en_luz if (preElement.classList.contains("light")) { preElement.classList.remove("light"); bodyElement.classList.remove("light-body"); // Quitar estilo claro del body themeIcon.src = "https://acordesweb.com/img/lampara3.png"; localStorage.setItem("theme", "dark"); // Guardar estado del tema oscuro // Cambiar los elementos con clase negro_en_luz a blanco negroEnLuzElements.forEach(el => { el.style.color = "#fff"; }); // Cambiar los elementos con clase amarillo_en_luz a amarillo amarilloEnLuzElements.forEach(el => { el.style.color = "#fcc107"; // Color amarillo (tema oscuro) }); } else { preElement.classList.add("light"); bodyElement.classList.add("light-body"); // Agregar estilo claro al body themeIcon.src = "https://acordesweb.com/img/luna2.png"; localStorage.setIt