User:Adminuser/common.css: Difference between revisions

(Created page with "→‎General page background and text color: body, #content, #bodyContent, #mw-content-text { background-color: #1e1e1e !important; color: #e0e0e0 !important; } →‎Headings: h1, h2, h3, h4, h5 { color: #ffffff !important; } →‎Links: a { color: #89bdff !important; } a:visited { color: #c98fff !important; } →‎Sidebar and nav backgrounds: #mw-panel, #p-personal, #footer, #mw-head, #mw-page-base { background-color: #2a2a2a !important; c...")
 
No edit summary
 
Line 1: Line 1:
html {
/* General page background and text color */
filter: invert(1) hue-rotate(180deg);
body,
background: #000 !important;
#content,
#bodyContent,
#mw-content-text {
background-color: #1e1e1e !important;
color: #e0e0e0 !important;
}
}


/* Re-invert images and videos back to normal */
/* Headings */
h1, h2, h3, h4, h5 {
img, video, iframe, picture {
color: #ffffff !important;
filter: invert(1) hue-rotate(180deg) !important;
}

/* Links */
a {
color: #89bdff !important;
}
a:visited {
color: #c98fff !important;
}

/* Sidebar and nav backgrounds */
#mw-panel, #p-personal, #footer, #mw-head, #mw-page-base {
background-color: #2a2a2a !important;
color: #ccc !important;
}

/* Search box and inputs */
input,
textarea {
background-color: #333 !important;
color: #eee !important;
border: 1px solid #555 !important;
}

/* Tables */
table, th, td {
background-color: #2c2c2c !important;
color: #ddd !important;
border: 1px solid #444 !important;
}
}

Latest revision as of 13:12, 15 July 2025

html {
    filter: invert(1) hue-rotate(180deg);
    background: #000 !important;
}

/* Re-invert images and videos back to normal */
img, video, iframe, picture {
    filter: invert(1) hue-rotate(180deg) !important;
}