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 11: Line 11:
     --color-subtle: #cccccc; /* Less important text */
     --color-subtle: #cccccc; /* Less important text */


     /* Ensure links and buttons contrast well */
/* Green links */
     --color-primary--hover: #dddddd; /* Hover effect for links/buttons */
     --color-primary: #66ff66; /* Default link color */
     --color-primary--active: #bbbbbb; /* Clicked state */
     --color-primary--hover: #44cc44; /* Hovered link */
     --color-primary--active: #33aa33; /* Clicked link */


     /* Change UI button colors */
     /* Change UI button colors */

Revision as of 20:34, 4 February 2025

/* All CSS here will be loaded for users of the Citizen skin */

:root.skin-theme-clientpref-night {
    --color-primary__h: 0;   /* Hue (0 = Red, not relevant for white) */
    --color-primary__s: 0%;  /* Saturation (0% makes it grayscale) */
    --color-primary__l: 100%; /* Lightness (100% makes it white) */

    /* Ensure text is white */
    --color-base: #ffffff; /* Main text color */
    --color-emphasized: #f5f5f5; /* Emphasized text */
    --color-subtle: #cccccc; /* Less important text */

/* Green links */
    --color-primary: #66ff66; /* Default link color */
    --color-primary--hover: #44cc44; /* Hovered link */
    --color-primary--active: #33aa33; /* Clicked link */

    /* Change UI button colors */
    --color-syntax-red: #ff6666; /* Error text */
    --color-syntax-blue: #6699ff; /* Links */
    --color-syntax-green: #66ff66; /* Success messages */
}