MediaWiki:Colors.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
:root { /* would use .skin-vector-light but there can be neither applied since its JS based so default lightmode */ | :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 */ | --theme-page-text-color: #43403D; /* lighter body font */ | ||
--theme-page-background: rgba(255,255,255,0.98); | |||
--theme-page-background--rgb: 255, 255, 255; | |||
/* Custom variables */ | /* Custom variables */ | ||
Line 24: | Line 26: | ||
:root .skin-vector-dark { | :root .skin-vector-dark { | ||
--theme-page-text-color: #FFFFFF; | --theme-page-text-color: #FFFFFF; | ||
--theme-page-background: rgb(27, 29, 36, 0.98); | |||
--theme-page-background--rgb: 27, 29, 36; | |||
/* Custom variables */ | /* Custom variables */ | ||
Line 48: | Line 52: | ||
--custom-bot-color: #999999; | --custom-bot-color: #999999; | ||
--custom-bot-font-style: italic; | --custom-bot-font-style: italic; | ||
/* Darker version of alert */ | |||
/* Darker version of alert */ | |||
--theme-alert-highlight: #a90000; | --theme-alert-highlight: #a90000; | ||
--theme-alert-highlight--rgb: rgb(169, 0, 0); | --theme-alert-highlight--rgb: rgb(169, 0, 0); | ||
Line 57: | Line 59: | ||
} | } | ||
/* | /* Use vars for page */ | ||
h1, h2, h3, h4, h5, h6, .mw-body { | h1, h2, h3, h4, h5, h6, .mw-body { | ||
color: var(--theme-page-text-color); | color: var(--theme-page-text-color); | ||
} | |||
#content.mw-body, .parsoid-body { | |||
background-color: var(--theme-page-background) !important; | |||
border: 10px solid var(--theme-page-background); | |||
} | } | ||
Revision as of 07:58, 12 July 2024
: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 */
--theme-page-background: rgba(255,255,255,0.98);
--theme-page-background--rgb: 255, 255, 255;
/* 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: #c05822;
--custom-contentmoderator-highlight: #6368e6;
--custom-bot-color: #999999;
--custom-bot-font-style: italic;
}
:root .skin-vector-dark {
--theme-page-text-color: #FFFFFF;
--theme-page-background: rgb(27, 29, 36, 0.98);
--theme-page-background--rgb: 27, 29, 36;
/* Custom variables */
--theme-alt-text: #383533;
--theme-accent-bg: #403F3F;
--theme-infobox-bg: #222020;
--color-player: #69ac52;
--color-accent: #d89e43;
--card-bg-main: #2C2C2C;
--card-bg-sub: #474746;
--letter-bg: #1C1A1A;
/* Recolor red links */
--theme-alert-color: #EF4F4F;
--theme-alert-color--rgb: rgb(239,79,79);
--theme-alert-color--hover: #D04545;
/* User highlight */
--custom-admin-highlight: #F6816C;
--custom-contentmoderator-highlight: #8796ff;
--custom-bot-color: #999999;
--custom-bot-font-style: italic;
/* Darker version of alert */
--theme-alert-highlight: #a90000;
--theme-alert-highlight--rgb: rgb(169, 0, 0);
--theme-alert-highlight--hover: #c30000;
}
/* Use vars for page */
h1, h2, h3, h4, h5, h6, .mw-body {
color: var(--theme-page-text-color);
}
#content.mw-body, .parsoid-body {
background-color: var(--theme-page-background) !important;
border: 10px solid var(--theme-page-background);
}
/* Change color of classes that used alert-color as bg color */
.skin-vector-dark #mw-notification-area.mw-notification.mw-notification-type-error,
.skin-vector-dark .postedit.mw-notification.mw-notification-type-error,
.skin-vector-dark .wds-table-td-alert,
.skin-vector-dark .diff td.diff-deletedline .diffchange {
background-color: var(--theme-alert-highlight);
}
.text-error {
color: var(--theme-alert-highlight);
}
/* For [[Template:Color]] */
.text-player, .text-player * { color: var(--color-player); }
.bg-player { background-color: var(--color-player); }
.text-accent, .text-accent * { color: var(--color-accent); }
.bg-accent { background-color: var(--color-accent); }
/*
USER HIGHLIGHT
Please keep list alphabetized
*/
/* Admin */
a[href="https://coralisland.wiki/wiki/User:Mikevoir"], a[href="/wiki/User:Mikevoir"], a[href="/wiki/Special:Contributions/Mikevoir"],
a[href="https://coralisland.wiki/wiki/User:Novell"], a[href="/wiki/User:Novell"], a[href="/wiki/Special:Contributions/Novell"],
a[href="https://coralisland.wiki/wiki/User:Salty_Nori"], a[href="/wiki/User:Salty_Nori"], a[href="/wiki/Special:Contributions/Salty_Nori"]
{
color: var(--custom-admin-highlight);
}
/* Content moderator
a[href="https://coralisland.wiki/wiki/User:NAME"], a[href="/wiki/User:NAME"], a[href="/wiki/Special:Contributions/NAME"]
{
color: var(--custom-contentmoderator-highlight);
}
*/
/* Bots */
a[href="https://coralisland.wiki/wiki/User:NoriBot"], a[href="/wiki/User:NoriBot"], a[href="/wiki/Special:Contributions/NoriBot"],
a[href="https://coralisland.wiki/wiki/User:VoirBot"], a[href="/wiki/User:VoirBot"], a[href="/wiki/Special:Contributions/VoirBot"]
{
color: var(--custom-bot-color);
font-style: var(--custom-bot-font-style);
}