MediaWiki:Colors.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with ":root { →would use .skin-vector-light but there can be neither applied since its JS based so default lightmode: --theme-page-text-color: #43403D; →lighter body font: →Custom variables: --theme-alt-text: #FFF; --theme-accent-bg: #E2EEF2; --theme-infobox-bg: #FCFAF9; --color-player: #69ac52; --color-accent: #d89e43; --card-bg-main: #F6E6CF; --card-bg-sub: #E9CDA2; --letter-bg: #FAF3EA; →User highlight: --custom-admin-highlight: #...") |
m (Color Update) |
||
| (48 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
/** Foundation: MediaWiki Colors **/ | |||
:root { | |||
/* Main Palette */ | |||
--teal-600: #2c7a7b; | |||
--teal-500: #319795; | |||
--teal-400: #38b2ac; | |||
--teal-300: #4fd1c7; | |||
--teal-200: #81e6d9; | |||
--teal-100: #b2f5ea; | |||
--teal-050: #e6fffa; | |||
--gold-accent: #e7c361; | |||
--gold-hover: #d69e2e; | |||
/* | |||
-- | |||
-- | |||
-- | |||
-- | |||
/* Grayscale */ | |||
-- | --gray-950: #0f1419; | ||
--gray-900: #1a202c; | |||
-- | --gray-700: #4a5568; | ||
--gray-050: #ffffff; | |||
-- | |||
-- | |||
} | } | ||
/* | /* Light Theme Variables */ | ||
.skin-vector-dark { | :root body:not(.skin-vector-dark) { | ||
--theme- | --theme-page-text-color: #1a2a2a; | ||
--theme- | --theme-page-background-color: #f5fdfb; | ||
--theme- | --theme-page-background-color--secondary: #e8f5f3; | ||
--theme-link-color: #007d7a; | |||
--theme-border-color: #a1e9dc; | |||
--theme-border-color-rgb: 161, 233, 220; | |||
--accent: var(--teal-400); | |||
} | } | ||
/* | /* Dark Theme Variables */ | ||
.skin-vector-dark | :root .skin-vector-dark { | ||
--theme-page-text-color: #e6f7f5; | |||
--theme-page-background-color: #1a202c; | |||
--theme-page-background-color--secondary: #2a363d; | |||
--theme-link-color: #5fd9cf; | |||
--theme-border-color: #4d6872; | |||
--theme-border-color-rgb: 77, 104, 114; | |||
--accent: var(--teal-300); | |||
} | } | ||
Latest revision as of 11:53, 25 March 2026
/** Foundation: MediaWiki Colors **/
:root {
/* Main Palette */
--teal-600: #2c7a7b;
--teal-500: #319795;
--teal-400: #38b2ac;
--teal-300: #4fd1c7;
--teal-200: #81e6d9;
--teal-100: #b2f5ea;
--teal-050: #e6fffa;
--gold-accent: #e7c361;
--gold-hover: #d69e2e;
/* Grayscale */
--gray-950: #0f1419;
--gray-900: #1a202c;
--gray-700: #4a5568;
--gray-050: #ffffff;
}
/* Light Theme Variables */
:root body:not(.skin-vector-dark) {
--theme-page-text-color: #1a2a2a;
--theme-page-background-color: #f5fdfb;
--theme-page-background-color--secondary: #e8f5f3;
--theme-link-color: #007d7a;
--theme-border-color: #a1e9dc;
--theme-border-color-rgb: 161, 233, 220;
--accent: var(--teal-400);
}
/* Dark Theme Variables */
:root .skin-vector-dark {
--theme-page-text-color: #e6f7f5;
--theme-page-background-color: #1a202c;
--theme-page-background-color--secondary: #2a363d;
--theme-link-color: #5fd9cf;
--theme-border-color: #4d6872;
--theme-border-color-rgb: 77, 104, 114;
--accent: var(--teal-300);
}