HTML
CSS
JS
index.html
AI Review
Reset
<button id="theme-toggle">Dark Mode</button> <h1>My Themed Page</h1> <p>This is a paragraph that should change colour with the theme.</p> <div class="card"> <h2>A Card</h2> <p>The card background should also change with the theme.</p> </div>
/* Define your theme variables here */ :root { /* light mode variables */ } body.dark { /* dark mode variable overrides */ } body { font-family: sans-serif; padding: 40px; } .card { padding: 20px; border-radius: 8px; margin-top: 20px; } button { padding: 8px 16px; cursor: pointer; }
// Wire up the theme toggle here
Live Preview