mirror of
https://github.com/Damillora/Rinze.git
synced 2025-04-17 04:43:14 +00:00
22 lines
639 B
Svelte
22 lines
639 B
Svelte
<script>
|
|
let icon = "brightness_low";
|
|
let text = "Dark Mode";
|
|
|
|
function toggleMode() {
|
|
if(window.document.body.getAttribute("data-theme") != "dark") {
|
|
window.document.body.setAttribute("data-theme","dark");
|
|
icon = "brightness_high";
|
|
text = "Light Mode"
|
|
} else {
|
|
window.document.body.setAttribute("data-theme","light");
|
|
icon = "brightness_low";
|
|
text = "Dark Mode"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div class="menu__item" on:click={toggleMode}>
|
|
<i class="menu__icon material-icons md-24">{icon}</i>
|
|
<p class="menu__text">{text}</p>
|
|
</div>
|