1
0
mirror of https://github.com/Damillora/Yuika synced 2024-10-06 06:42:51 +00:00
Yuika/assets/js/dark-mode.js

15 lines
526 B
JavaScript
Raw Normal View History

$(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");
}
})
});