MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
Added initial Cyclon color palette |
(No difference)
|
Latest revision as of 22:37, 8 October 2025
/* All CSS here will be loaded for users of the Citizen skin */
/* Cyclon color palette for Citizen */
/* Links (cyan accent) */
:root {
--color-link: #28c8ff;
--color-link--active: #72deff;
}
/* Distinct visited color */
.mw-body a:visited { color: #8aa2ff; }
/* Primary accent on progressive buttons/OOUI */
.mw-ui-button.mw-ui-progressive,
.oo-ui-buttonElement-framed.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button {
background: #5e24d8; border-color: #5e24d8; color: #fff;
}
.mw-ui-button.mw-ui-progressive:hover,
.oo-ui-buttonElement-framed.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button:hover {
background: #6b34f0; border-color: #6b34f0;
}
.mw-ui-button.mw-ui-progressive:active,
.oo-ui-buttonElement-framed.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button:active {
background: #4b1bb5; border-color: #4b1bb5;
}
/* Dark theme surfaces */
:root.skin-theme-clientpref-night {
--color-surface-0: #0c0219;
--color-surface-1: #120323;
--color-surface-2: #190433;
--color-surface-3: #190433;
--color-base: #f2f4f8; /* body text */
--color-emphasized: #ffffff; /* headings */
--color-subtle: #c7c7d2; /* captions/meta */
}
/* gentle header tint */
.skin-citizen .citizen-header {
background: linear-gradient(180deg, #120323, #190433);
}