Difference between revisions of "User:Certified nqh/epicdarkmode.css"

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
Line 1: Line 1:
/* NQH's totally cool and amazingly radical dark mode */
+
/* Sets everything to dark background. */
:not(a, .mw-wiki-logo) {
+
:not(a, .mw-wiki-logo) {background-color: #040302 !important; color: #DDD !important;}
background-color: black !important;
 
color: white !important;
 
}
 
  
.mw-wiki-logo {
+
/* Diff. */
background-color: white !important;
+
td.diff-context, td.diff-context * {color: #777 !important; border-color: #333 !important;}
filter: invert(100%);
+
td.diff-deletedline {border-color: #F33 !important;}
}
+
td.diff-addedline {border-color: #3F3 !important;}
 +
del.diffchange-inline {color: #F55 !important;}
 +
ins.diffchange-inline {color: #5F5 !important;}
  
a[href$="redlink=1"] {
+
/* Numbers in history view. */
color: #F00 !important;
+
span.mw-plusminus-pos {color: #5F5 !important;}
text-decoration: line-through !important;
+
span.mw-plusminus-neg {color: #F55 !important;}
}
+
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}
 +
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}
  
a:not([href$="redlink=1"]) {
+
/* Links. */
color: #88F !important;
+
a[href$="redlink=1"] {color: #F00 !important; text-decoration: line-through !important;}
}
+
a:not([href$="redlink=1"]) {color: #88F !important;}
 +
a:visited:not([href$="redlink=1"]) {color: #AAF !important;}
 +
a:hover:not([href$="redlink=1"]) {color: #AAF !important; text-decoration: underline !important; font-weight: bold !important;}
 +
a:active:not([href$="redlink=1"]) {color: #FFF !important; text-decoration: underline !important; font-weight: bold !important;}
  
a:visited:not([href$="redlink=1"]) {
+
/* Misc. */
color: #AAF !important;
+
.mw-wiki-logo {background-color: white !important; filter: invert(100%);}
}
 
 
 
a:hover:not([href$="redlink=1"]) {
 
color: #AAF !important;
 
text-decoration: underline !important;
 
font-weight: bold !important;
 
}
 
 
 
a:active:not([href$="redlink=1"]) {
 
color: #FFF !important;
 
text-decoration: underline !important;
 
font-weight: bold !important;
 
}
 

Revision as of 03:03, 23 October 2023

/* Sets everything to dark background. */
:not(a, .mw-wiki-logo) {background-color: #040302 !important; color: #DDD !important;}

/* Diff. */
td.diff-context, td.diff-context * {color: #777 !important; border-color: #333 !important;}
td.diff-deletedline {border-color: #F33 !important;}
td.diff-addedline {border-color: #3F3 !important;}
del.diffchange-inline {color: #F55 !important;}
ins.diffchange-inline {color: #5F5 !important;}

/* Numbers in history view. */
span.mw-plusminus-pos {color: #5F5 !important;}
span.mw-plusminus-neg {color: #F55 !important;}
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}
strong.mw-plusminus-pos {color: #0F0 !important; font-size: 1.2em;}

/* Links. */
a[href$="redlink=1"] {color: #F00 !important; text-decoration: line-through !important;}
a:not([href$="redlink=1"]) {color: #88F !important;}
a:visited:not([href$="redlink=1"]) {color: #AAF !important;}
a:hover:not([href$="redlink=1"]) {color: #AAF !important; text-decoration: underline !important; font-weight: bold !important;}
a:active:not([href$="redlink=1"]) {color: #FFF !important; text-decoration: underline !important; font-weight: bold !important;}

/* Misc. */
.mw-wiki-logo {background-color: white !important; filter: invert(100%);}