Jump to content

MediaWiki:Vector-2022.css

From Fractured Reality
Revision as of 07:36, 10 September 2026 by Fmagick (talk | contribs) (Replaced content with "→Force Vector-2022 into dark mode for everyone: html.skin-vector.skin-vector-2022 { color-scheme: dark !important; background-color: #111 !important; } →Remove white backgrounds from Vector wrappers: body, .mw-page-container, .mw-content-container, .vector-main-container, .vector-column-start, .vector-column-end, .mw-body, #content { background: #111 !important; color: #ddd !important; } →Basic dark text + link colors: body { color:...")

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Force Vector-2022 into dark mode for everyone */
html.skin-vector.skin-vector-2022 {
    color-scheme: dark !important;
    background-color: #111 !important;
}

/* Remove white backgrounds from Vector wrappers */
body,
.mw-page-container,
.mw-content-container,
.vector-main-container,
.vector-column-start,
.vector-column-end,
.mw-body,
#content {
    background: #111 !important;
    color: #ddd !important;
}

/* Basic dark text + link colors */
body {
    color: #ddd !important;
}

a {
    color: #7abaff !important;
}