btorrent/modeTheme.js
2022-12-14 23:53:58 -03:00

5 lines
178 B
JavaScript

// license: https://www.w3schools.com/howto/howto_js_toggle_dark_mode.asp
function darkModetheme() {
var element = document.body;
element.classList.toggle("dark-mode");
}