btorrent/modeTheme.js

8 lines
270 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");
2022-12-15 03:12:42 +00:00
var btn1 = document.getElementById("btn1");
element.classList.toggle("btn1DarkMode");
2022-12-14 23:56:16 +00:00
}