About Dark Mode
Dark mode reduces eye strain in low-light conditions and can save battery life on OLED displays. It's also a popular aesthetic choice for many users.
This implementation includes smooth transitions, system preference detection, and customizable themes to provide the best user experience.
Typography Demo
This paragraph demonstrates how text appears in the current theme. Good contrast is essential for readability.
This is a blockquote to show how different text elements appear in each theme.
// This is a code block
function toggleDarkMode() {
document.body.classList.toggle('dark-mode');
}