MediaWiki:Timeless.css
From Access Tech Central
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* All CSS here will be loaded for users of the Timeless skin */
/* High-Contrast Dark Theme for Timeless */
:root {
--background-color-base: #000000 !important; /* Pure black for maximum contrast */
--color-base: #FFFFFF !important; /* Pure white text */
--color-primary: #FFFF00 !important; /* Bright yellow links (High visibility) */
}
body, #content {
background-color: #000000 !important;
color: #FFFFFF !important;
font-size: 1.3rem !important; /* Larger text for accessibility */
line-height: 1.8 !important; /* Better spacing for screen readers */
}
/* Make links pop against the black */
a { color: #00FFFF !important; } /* Cyan links */
a:visited { color: #FF00FF !important; } /* Magenta visited links */
/* Ensure the search bar and buttons are visible */
input, button {
background-color: #222 !important;
color: #FFF !important;
border: 2px solid #FFFF00 !important;
}