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
Created page with "body { background-color: #1a1a1a !important; Dark background: color: #ffffff !important; White text: }"
 
No edit summary
Line 1: Line 1:
/* Force a dark background and white text */
:root {
    --background-color: #1a1a1a !important;
    --foreground-color: #ffffff !important;
}
/* Apply these colors to the body */
body {
body {
     background-color: #1a1a1a !important; /* Dark background */
     background-color: var(--background-color) !important;
     color: #ffffff !important; /* White text */
     color: var(--foreground-color) !important;
}
}

Revision as of 12:22, 28 February 2025

/* Force a dark background and white text */
:root {
    --background-color: #1a1a1a !important;
    --foreground-color: #ffffff !important;
}

/* Apply these colors to the body */
body {
    background-color: var(--background-color) !important;
    color: var(--foreground-color) !important;
}