Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Vector-2022.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* Force a dark background and white text */
/* Force dark background and white text */
:root {
html, body {
     --background-color: #1a1a1a !important;
     background-color: #1a1a1a !important;
     --foreground-color: #ffffff !important;
     color: #ffffff !important;
}
 
/* Apply these colors to the body */
body {
    background-color: var(--background-color) !important;
    color: var(--foreground-color) !important;
}
}

Revision as of 12:23, 28 February 2025

/* Force dark background and white text */
html, body {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}