WEBLEB
Home
AI Editor
Login
Pro
English
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Dark Mode Switch CSS
1208
bachir123
Open In Editor
Video
Publish Your Code
0
Recommended
23 August 2025
Login & Register Form HTML/CSS/JS Template
16 July 2025
CSS Stage with Light Strings and Stairs
11 August 2025
CSS Animation: Loading Blob with Pulse
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) */