WEBLEB
Home
AI Editor
Login
Pro
English
English
Français
Español
Português
Deutsch
Italiano
हिंदी
changing light
1100
mambetov1237.b
Open In Editor
Video
Publish Your Code
0
Recommended
28 October 2025
Light Mode Toggle Button HTML/CSS/JS
19 March 2025
Pure CSS3 Star Wars Lightsaber Checkboxes
15 December 2025
HTML Light Button with Icon and Text
HTML
Copy
Document
press me
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: blue; 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) */