MediaWiki:Timeless.css

From Access Tech Central
Revision as of 06:28, 20 February 2026 by Admin (talk | contribs) (Created page with "→‎All CSS here will be loaded for users of the Timeless skin: →‎High-Contrast Dark Theme for Timeless: :root { --background-color-base: #000000; →‎Pure black for maximum contrast: --color-base: #FFFFFF; →‎Pure white text: --color-primary: #FFFF00; →‎Bright yellow links (High visibility): } body, #content { background-color: #000000 !important; color: #FFFFFF !important; font-size: 1.3rem !important; /* Larg...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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; /* Pure black for maximum contrast */
    --color-base: #FFFFFF;            /* Pure white text */
    --color-primary: #FFFF00;         /* 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;
}