MediaWiki:Citizen.css
Appearance
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;
}