btorrent/modeTheme.js

6 lines
178 B
JavaScript
Raw Normal View History

2022-12-15 01:43:00 +00:00
// license: https://www.w3schools.com/howto/howto_js_toggle_dark_mode.asp
2022-12-15 02:53:58 +00:00
function darkModetheme() {
2022-12-14 23:56:16 +00:00
var element = document.body;
element.classList.toggle("dark-mode");
}