mirror of
https://github.com/Damillora/Yuika
synced 2024-11-14 22:07:32 +00:00
15 lines
526 B
JavaScript
15 lines
526 B
JavaScript
|
|
||
|
$(document).ready(function () {
|
||
|
$("#darkMode").click(function () {
|
||
|
if (window.document.body.getAttribute("data-theme") != "dark") {
|
||
|
window.document.body.setAttribute("data-theme", "dark");
|
||
|
$("#darkMode i").text("brightness_high");
|
||
|
$("#darkMode p").text("Light Mode");
|
||
|
} else {
|
||
|
window.document.body.setAttribute("data-theme", "light");
|
||
|
$("#darkMode i").text("brightness_low");
|
||
|
$("#darkMode p").text("Dark Mode");
|
||
|
}
|
||
|
})
|
||
|
});
|