Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>darkmode</title>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>

<style>
:root {
--text-color: #fff;
--bg-color: #121212;
}

.light {
--text-color: #121212;
--bg-color: #fff;
}

body {
color: var(--text-color);
background-color: var(--bg-color);
transform: all 2.5s;
}
</style>
<body>
<section>
<h1>dark mode button</h1>

<label class="toggle">
<input type="checkbox" />
<span class="slider"></span>
</label>
</section>

<script>
const checkbox = document.querySelector("input[type='checkbox']");
checkbox.addEventListener("click", () => {
document.body.classList.toggle("light");
});
</script>
</body>
</html>

You might also like