MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* Custom Earth & Swamp Palette with Frosted Glass Effects */ | ||
:root, | :root, | ||
.skin-theme-clientpref-night, | .skin-theme-clientpref-night, | ||
html.skin-citizen-dark { | html.skin-citizen-dark { | ||
--color-surface-0: # | /* 1. Canvas Background - Deep, rich swamp water green */ | ||
--color-surface-1: | --color-surface-0: #1b241c !important; | ||
--color-surface-2: | |||
--color-surface-3: # | /* 2. Main Containers - Semi-transparent Earthy Mud Brown */ | ||
--color-primary: # | --color-surface-1: rgba(54, 43, 36, 0.65) !important; | ||
--color- | |||
/* 3. Elevated Menus/Popups - Slightly more opaque Mud Brown */ | |||
--color-surface-2: rgba(74, 59, 49, 0.8) !important; | |||
/* 4. Active Inputs & Borders - Weathered Clay / Dark Tan */ | |||
--color-surface-3: rgba(100, 83, 71, 0.9) !important; | |||
/* 5. Interface Accents - Vibrant Moss/Foliage Green */ | |||
--color-primary: #6b8e23 !important; | |||
--color-primary-variant: #556b2f !important; | |||
/* Text overrides to preserve readability over dark wood tones */ | |||
--color-base: #e6dfd3 !important; /* Soft Cream Primary Text */ | |||
--color-base-variant: #b5ad9e !important; /* Muted Sand Secondary Text */ | |||
} | |||
/* Force modern browsers to render a frosted blur behind the content panels */ | |||
.mw-page-container, | |||
.skin-citizen-sidebar, | |||
.ext-visualEditor-theme-citizen, | |||
.mw-portlet, | |||
.oo-ui-panelLayout { | |||
background-color: var(--color-surface-1) !important; | |||
backdrop-filter: blur(12px) webkit-backdrop-filter(12px) !important; | |||
border: 1px solid rgba(255, 255, 255, 0.05) !important; | |||
} | |||
/* Keep headers readable and cleanly blurred over the swamp backdrop */ | |||
#mw-header { | |||
background-color: rgba(27, 36, 28, 0.75) !important; | |||
backdrop-filter: blur(10px) webkit-backdrop-filter(10px) !important; | |||
} | } | ||
Revision as of 05:50, 7 August 2026
/* Custom Earth & Swamp Palette with Frosted Glass Effects */
:root,
.skin-theme-clientpref-night,
html.skin-citizen-dark {
/* 1. Canvas Background - Deep, rich swamp water green */
--color-surface-0: #1b241c !important;
/* 2. Main Containers - Semi-transparent Earthy Mud Brown */
--color-surface-1: rgba(54, 43, 36, 0.65) !important;
/* 3. Elevated Menus/Popups - Slightly more opaque Mud Brown */
--color-surface-2: rgba(74, 59, 49, 0.8) !important;
/* 4. Active Inputs & Borders - Weathered Clay / Dark Tan */
--color-surface-3: rgba(100, 83, 71, 0.9) !important;
/* 5. Interface Accents - Vibrant Moss/Foliage Green */
--color-primary: #6b8e23 !important;
--color-primary-variant: #556b2f !important;
/* Text overrides to preserve readability over dark wood tones */
--color-base: #e6dfd3 !important; /* Soft Cream Primary Text */
--color-base-variant: #b5ad9e !important; /* Muted Sand Secondary Text */
}
/* Force modern browsers to render a frosted blur behind the content panels */
.mw-page-container,
.skin-citizen-sidebar,
.ext-visualEditor-theme-citizen,
.mw-portlet,
.oo-ui-panelLayout {
background-color: var(--color-surface-1) !important;
backdrop-filter: blur(12px) webkit-backdrop-filter(12px) !important;
border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
/* Keep headers readable and cleanly blurred over the swamp backdrop */
#mw-header {
background-color: rgba(27, 36, 28, 0.75) !important;
backdrop-filter: blur(10px) webkit-backdrop-filter(10px) !important;
}