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 dark background and white text */
/* Apply custom background and text color */
html, body {
body {
     background-color: #1a1a1a !important;
     background-color: #1a1a1a; /* Dark background */
     color: #ffffff !important;
     color: #ffffff; /* White text */
}
 
/* Ensure links are readable */
a {
    color: #4ea6ea; /* Light blue links */
}
a:visited {
    color: #b85cfa; /* Light purple for visited links */
}
}

Revision as of 12:46, 28 February 2025

/* Apply custom background and text color */
body {
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* White text */
}

/* Ensure links are readable */
a {
    color: #4ea6ea; /* Light blue links */
}
a:visited {
    color: #b85cfa; /* Light purple for visited links */
}