MediaWiki:Vector.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→All CSS here will be loaded for users of the Vector skin: →Dark mode for body background and default text: body { background-color: #1a1a1a; →Very dark gray, almost black: color: #e0e0e0; →Light gray for default text: } →Ensure links are visible on dark background: a { color: #88c0d0; →A soft blue that stands out on dark backgrounds: } a:visited { color: #b48ead; →A muted purple for visited links: } a:hover {..." |
No edit summary |
||
Line 8: | Line 8: | ||
/* Ensure links are visible on dark background */ | /* Ensure links are visible on dark background */ | ||
/* Ensure links are visible and styled as requested on dark background */ | |||
a { | a { | ||
color: # | color: #7aa06e; /* Dull aqua green for unvisited links */ | ||
} | } | ||
a:visited { | a:visited { | ||
color: # | color: #cccccc; /* Light grey for visited links */ | ||
} | } | ||
a:hover { | a:hover { | ||
color: #a3be8c; /* A light green | color: #a3be8c; /* A light green for hover - keeping this from previous suggestion or adjust if needed */ | ||
} | } |
Revision as of 20:24, 29 June 2025
/* All CSS here will be loaded for users of the Vector skin */
/* Dark mode for body background and default text */
body {
background-color: #1a1a1a; /* Very dark gray, almost black */
color: #e0e0e0; /* Light gray for default text */
}
/* Ensure links are visible on dark background */
/* Ensure links are visible and styled as requested on dark background */
a {
color: #7aa06e; /* Dull aqua green for unvisited links */
}
a:visited {
color: #cccccc; /* Light grey for visited links */
}
a:hover {
color: #a3be8c; /* A light green for hover - keeping this from previous suggestion or adjust if needed */
}
By using this site, you agree to the Terms of Use. © 1996–2025 The Quincy Examiner / MTB. All rights reserved.