WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
bachir123 द्वारा एक कोड
1323
bachir123
संपादक में खोलें
Video
अपना कोड प्रकाशित करें
0
अनुशंसित
25 May 2025
qatar2023 द्वारा एक कोड
13 April 2025
gherhz द्वारा एक कोड
26 December 2024
कुशलक्लाउड646 द्वारा एक कोड
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) */