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
No edit summary
 
Line 4: Line 4:
/* For all themes */
/* For all themes */
:root {
:root {
     --color-surface-0: #f3fcf5; /* Lightest background – main page */
     --color-surface-0: #f9fdfb; /* Very light greenish white */
     --color-surface-1: #f0faf2; /* Slightly deeper – modals, dropdowns */
     --color-surface-1: #f5fbf8;  
     --color-surface-2: #e7f6ec; /* Containers */
     --color-surface-2: #eef7f3;  
     --color-surface-3: #dbf1e2; /* Cards, boxes */
     --color-surface-3: #e5f3ec;  
     --color-surface-4: #d0ebd8; /* Slight highlight or contrast */
     --color-surface-4: #ddeee6;
}
}


/* Optional: tweak backgrounds for light theme specifically */
/* Light theme overrides */
:root.skin-theme-clientpref-light {
:root.skin-theme-clientpref-light {
     --color-surface-0: #ffffff; /* Pure white */
     --color-surface-0: #ffffff; /* Pure white */
     --color-surface-1: #f3fcf5; /* Light green tint */
     --color-surface-1: #f9fdfb;  
     --color-surface-2: #eaf7ed;
     --color-surface-2: #f1f8f4;
     --color-surface-3: #def2e4;
     --color-surface-3: #e9f3ec;
     --color-surface-4: #d4ecda;
     --color-surface-4: #e1eee6;
}
}


/* Optional: tweak backgrounds for dark theme specifically */
/* Dark theme overrides – still green-accented but subtle */
:root.skin-theme-clientpref-night {
:root.skin-theme-clientpref-night {
     --color-surface-0: #122d1f; /* Dark green background */
     --color-surface-0: #1b1f1c;
     --color-surface-1: #183a28;
     --color-surface-1: #232823;
     --color-surface-2: #204d36;
     --color-surface-2: #2c312c;
     --color-surface-3: #29614a;
     --color-surface-3: #354037;
     --color-surface-4: #31755f;
     --color-surface-4: #3d4b41;
}
}

Latest 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: #f9fdfb; /* Very light greenish white */
    --color-surface-1: #f5fbf8; 
    --color-surface-2: #eef7f3; 
    --color-surface-3: #e5f3ec; 
    --color-surface-4: #ddeee6;
}

/* Light theme overrides */
:root.skin-theme-clientpref-light {
    --color-surface-0: #ffffff; /* Pure white */
    --color-surface-1: #f9fdfb; 
    --color-surface-2: #f1f8f4;
    --color-surface-3: #e9f3ec;
    --color-surface-4: #e1eee6;
}

/* Dark theme overrides – still green-accented but subtle */
:root.skin-theme-clientpref-night {
    --color-surface-0: #1b1f1c;
    --color-surface-1: #232823;
    --color-surface-2: #2c312c;
    --color-surface-3: #354037;
    --color-surface-4: #3d4b41;
}