EaglercraftX-Site/js/darkmode.js
2024-10-01 12:17:44 -07:00

16 lines
351 B
JavaScript

function dMode() {
console.log("heck yeah");
var inputs = document.getElementsByTagName('input');
var body = document.body;
body.style.color="f1f1f1";
body.style.backgroundColor="3c3c3c";
for(var i=0; i<inputs.length; i++){
if(inputs[i].getAttribute('type')=='button'){
inputs.style.backgroundColor="#13f4f3";
}
}
}