WEBLEB
Inicio
Editora de código
Iniciar sesión
Pro
Español
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Un código de bachir123
557
bachir123
Abrir en el editor
Publica tu código
¿Necesitas un sitio web?
Recomendado
26 January 2025
Un código de Redllowge
31 October 2023
Juego de Serpiente Simple
26 June 2025
Creador de sitios web con IA | Arrastrar y soltar | WebMaster
HTML
Copy
Document
Switch Mode
CSS
Copy
body { background-color: white; color: black; transition: background-color 0.3s ease, color 0.3s ease; display: flex; align-items: center; justify-content: center; margin: 250px; } body.dark-mode { background-color: black; color: white; }<!-- Replace with your HTML Code (Leave empty if not needed) -->
JS
Copy
const toggleButton = document.getElementById("theme-toggle"); toggleButton.addEventListener("click", () => { document.body.classList.toggle("dark-mode"); });/* Replace with your JS Code (Leave empty if not needed) */