// Get the dark mode toggle button by its ID
const darkModeToggle = document.getElementById('darkModeToggle');
// Add a click event listener to toggle dark mode on the body
darkModeToggle.addEventListener('click', () => {
// Toggle the 'dark-mode' class on the body
document.body.classList.toggle('dark-mode');
});Dark Mode Toggle
javascript
Related Posts
More content you might like
Tutorial
css
CSS Variables and Custom Properties: Dynamic Theming and Beyond
:root {
--primary-color: #3498db;
--secondary-color: #2ecc71;
--background-color: #f5f5f5;
}
body {
background-color: var(--background-color);
}
.button {
background-color: var(--primary-color);
color: white;
}CSS variables make it easy to define consistent spacing units that can be reused throughout your design.
Sep 05, 2024
Read More Tutorial
javascript php
Managing Modals with Livewire and JavaScript
Create a Livewire component, or use an existing one where you want to manage modals.
Add methods to dispatch custom browser events when buttons are clicked:
Aug 14, 2024
Read More Code
javascript
Detect Dark Mode Preference
No preview available for this content.
Jan 26, 2024
Read MoreDiscussion 0
Please sign in to join the discussion.
No comments yet. Be the first to share your thoughts!