Jump to content

MediaWiki:Citizen.css

From CPCWiki - THE Amstrad CPC encyclopedia!
Revision as of 16:13, 30 August 2026 by Gryzor (talk | contribs) (Created page with "All CSS here will be loaded for users of the Citizen skin: Custom Accent Colors for Light and Dark Modes: :root { Primary brand/link color: --color-primary: #0066cc; --color-primary--hover: #0052a3; --color-primary--active: #003d7a; } Dark mode overrides (optional): html.skin-theme-clientpref-night { --color-primary: #4da3ff; --color-primary--hover: #70b5ff; --color-primary--active: #99cbff; }")
(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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* All CSS here will be loaded for users of the Citizen skin */
/* Custom Accent Colors for Light and Dark Modes */
:root {
    /* Primary brand/link color */
    --color-primary: #0066cc;
    --color-primary--hover: #0052a3;
    --color-primary--active: #003d7a;
}

/* Dark mode overrides (optional) */
html.skin-theme-clientpref-night {
    --color-primary: #4da3ff;
    --color-primary--hover: #70b5ff;
    --color-primary--active: #99cbff;
}