More actions
Created page with "→All CSS here will be loaded for users of the Citizen skin: →Customize all background (surface) colors – affects layout backgrounds, modals, dropdowns, etc.: →For all themes: :root { --color-surface-0: #f5f5f5; →Site main background: --color-surface-1: #fdfdfd; →Modals, dropdowns, top-level containers: --color-surface-2: #f0f0f0; →Nested containers: --color-surface-3: #e8e8e8; →Cards, tiles, etc.: --color-surface-4: #e0e..." |
No edit summary |
||
Line 4: | Line 4: | ||
/* For all themes */ | /* For all themes */ | ||
:root { | :root { | ||
--color-surface-0: # | --color-surface-0: #f3fcf5; /* Lightest background – main page */ | ||
--color-surface-1: # | --color-surface-1: #f0faf2; /* Slightly deeper – modals, dropdowns */ | ||
--color-surface-2: # | --color-surface-2: #e7f6ec; /* Containers */ | ||
--color-surface-3: # | --color-surface-3: #dbf1e2; /* Cards, boxes */ | ||
--color-surface-4: # | --color-surface-4: #d0ebd8; /* Slight highlight or contrast */ | ||
} | } | ||
/* Optional: tweak backgrounds for light theme specifically */ | /* Optional: tweak backgrounds for light theme specifically */ | ||
:root.skin-theme-clientpref-light { | :root.skin-theme-clientpref-light { | ||
--color-surface-0: #ffffff; | --color-surface-0: #ffffff; /* Pure white */ | ||
--color-surface-1: # | --color-surface-1: #f3fcf5; /* Light green tint */ | ||
--color-surface-2: # | --color-surface-2: #eaf7ed; | ||
--color-surface-3: # | --color-surface-3: #def2e4; | ||
--color-surface-4: # | --color-surface-4: #d4ecda; | ||
} | } | ||
/* Optional: tweak backgrounds for dark theme specifically */ | /* Optional: tweak backgrounds for dark theme specifically */ | ||
:root.skin-theme-clientpref-night { | :root.skin-theme-clientpref-night { | ||
--color-surface-0: # | --color-surface-0: #122d1f; /* Dark green background */ | ||
--color-surface-1: # | --color-surface-1: #183a28; | ||
--color-surface-2: # | --color-surface-2: #204d36; | ||
--color-surface-3: # | --color-surface-3: #29614a; | ||
--color-surface-4: # | --color-surface-4: #31755f; | ||
} | } |
Revision as of 17:41, 10 June 2025
/* All CSS here will be loaded for users of the Citizen skin */ /* Customize all background (surface) colors – affects layout backgrounds, modals, dropdowns, etc. */ /* For all themes */ :root { --color-surface-0: #f3fcf5; /* Lightest background – main page */ --color-surface-1: #f0faf2; /* Slightly deeper – modals, dropdowns */ --color-surface-2: #e7f6ec; /* Containers */ --color-surface-3: #dbf1e2; /* Cards, boxes */ --color-surface-4: #d0ebd8; /* Slight highlight or contrast */ } /* Optional: tweak backgrounds for light theme specifically */ :root.skin-theme-clientpref-light { --color-surface-0: #ffffff; /* Pure white */ --color-surface-1: #f3fcf5; /* Light green tint */ --color-surface-2: #eaf7ed; --color-surface-3: #def2e4; --color-surface-4: #d4ecda; } /* Optional: tweak backgrounds for dark theme specifically */ :root.skin-theme-clientpref-night { --color-surface-0: #122d1f; /* Dark green background */ --color-surface-1: #183a28; --color-surface-2: #204d36; --color-surface-3: #29614a; --color-surface-4: #31755f; }