MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
Created page with "→All CSS here will be loaded for users of the Citizen skin: →Apply Miasma organic dark forest tint to Citizen Night Mode: .skin-theme-clientpref-night { →Main canvas background (Miasma base background): --color-surface-0: #222222; →Card, page containers, and secondary layouts: --color-surface-1: #2c2c2c; →Elevated interface elements, dropdowns, and active states: --color-surface-2: #353535; /* Input fields..." |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* Using :root forces the variables to load at the highest authority level */ | ||
:root, | |||
.skin-theme-clientpref-night { | .skin-theme-clientpref-night, | ||
html.skin-citizen-dark { | |||
--color-surface-0: # | --color-surface-0: #1c1c1c !important; | ||
--color-surface-1: #242424 !important; | |||
--color-surface-2: #2b2b2b !important; | |||
--color-surface-1: # | --color-surface-3: #323232 !important; | ||
--color-primary: #78a06f !important; | |||
--color-primary-variant: #5f875f !important; | |||
--color-surface-2: # | |||
--color-surface-3: # | |||
--color-primary: # | |||
--color-primary-variant: # | |||
} | } | ||
Revision as of 05:39, 7 August 2026
/* Using :root forces the variables to load at the highest authority level */
:root,
.skin-theme-clientpref-night,
html.skin-citizen-dark {
--color-surface-0: #1c1c1c !important;
--color-surface-1: #242424 !important;
--color-surface-2: #2b2b2b !important;
--color-surface-3: #323232 !important;
--color-primary: #78a06f !important;
--color-primary-variant: #5f875f !important;
}