-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwikiDark.js
More file actions
24 lines (17 loc) · 850 Bytes
/
wikiDark.js
File metadata and controls
24 lines (17 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//dark mode for wikipedia
//how to use: paste the below code on the console in inspect element
document.getElementById("content").style.backgroundColor="black";
document.getElementById("content").style.color="white";
document.getElementById("mw-head").style.backgroundColor="black";
document.getElementById("mw-head").style.color="white";
document.getElementById("toc").style.backgroundColor="black";
document.getElementById("toc").style.color="white";
document.getElementById("mw-panel").style.backgroundColor="black";
document.getElementById("mw-panel").style.color="white";
document.body.style.backgroundColor="black";
document.body.style.color="white";
var arr=document.getElementsByTagName("pre");
for (var i = arr.length - 1; i >= 0; i--) {
arr[i].style.backgroundColor="black";
arr[i].style.color="white";
}