Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
 
No edit summary
Line 4: Line 4:
/* For all themes */
/* For all themes */
:root {
:root {
     --color-surface-0: #f5f5f5; /* Site main background */
     --color-surface-0: #f3fcf5; /* Lightest background – main page */
     --color-surface-1: #fdfdfd; /* Modals, dropdowns, top-level containers */
     --color-surface-1: #f0faf2; /* Slightly deeper – modals, dropdowns */
     --color-surface-2: #f0f0f0; /* Nested containers */
     --color-surface-2: #e7f6ec; /* Containers */
     --color-surface-3: #e8e8e8; /* Cards, tiles, etc. */
     --color-surface-3: #dbf1e2; /* Cards, boxes */
     --color-surface-4: #e0e0e0; /* Subtle background highlights */
     --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: #f9f9f9;
     --color-surface-1: #f3fcf5; /* Light green tint */
     --color-surface-2: #f1f1f1;
     --color-surface-2: #eaf7ed;
     --color-surface-3: #eaeaea;
     --color-surface-3: #def2e4;
     --color-surface-4: #e0e0e0;
     --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: #1e1e1e;
     --color-surface-0: #122d1f; /* Dark green background */
     --color-surface-1: #2a2a2a;
     --color-surface-1: #183a28;
     --color-surface-2: #333;
     --color-surface-2: #204d36;
     --color-surface-3: #3d3d3d;
     --color-surface-3: #29614a;
     --color-surface-4: #484848;
     --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;
}