2024-02-01 17:33:08 +00:00
|
|
|
/**
|
|
|
|
* Minerva CSS Custom properties
|
|
|
|
* ----------------------------
|
|
|
|
* Please be aware that these properties are accessible via *any* client-side code.
|
|
|
|
* These variables should mirror Codex design token names and values:
|
|
|
|
* https://doc.wikimedia.org/codex/latest/design-tokens
|
|
|
|
* Only include properties that are required for client-side modification.
|
|
|
|
*
|
|
|
|
* @private - Currently, these variables are only intended for use by Minerva,
|
|
|
|
* however, they are designed to mimic the naming convention in Codex tokens
|
|
|
|
* in order to facilitate an eventual migration to a centralized source.
|
|
|
|
* @experimental
|
|
|
|
* @since February 2024 (MediaWiki 1.43)
|
|
|
|
*/
|
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
@import 'mediawiki.skin.codex-design-tokens/theme-wikimedia-ui-experimental.less';
|
2024-02-21 15:17:39 +00:00
|
|
|
|
2024-03-04 22:43:15 +00:00
|
|
|
:root {
|
|
|
|
--minerva-diff-addedline: @color-success;
|
|
|
|
--minerva-diff-deletedline: @color-destructive;
|
|
|
|
--box-shadow-color-drawer: rgba( 0, 0, 0, 0.35 );
|
|
|
|
}
|
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
/**
|
|
|
|
* The following line groups the .skin-invert selector along with the :root selector.
|
|
|
|
* (From the theme-wikimedia-ui-experimental.less import above).
|
|
|
|
* This ensures that the light-mode color palette is always associated with the .skin-invert class.
|
|
|
|
*/
|
2024-02-01 17:33:08 +00:00
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
/* stylelint-disable-next-line */
|
|
|
|
.skin-invert:extend(:root) {}
|
|
|
|
/**
|
|
|
|
* As with the .skin-invert class, .notheme should also reset the CSS variables to the default light theme.
|
|
|
|
*/
|
2024-02-01 17:33:08 +00:00
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
/* stylelint-disable-next-line */
|
|
|
|
.notheme:extend(:root) {}
|
2024-02-21 23:49:26 +00:00
|
|
|
|
2024-02-01 17:33:08 +00:00
|
|
|
/**
|
|
|
|
* Placeholder Night mode color palette.
|
|
|
|
* NOTE: These values are temporarily hard coded.
|
|
|
|
*/
|
2024-02-27 19:17:07 +00:00
|
|
|
.mixin-night-mode-palette() {
|
2024-02-13 14:50:30 +00:00
|
|
|
--color-base: #f8f9fa;
|
|
|
|
--color-subtle: #d4d5d5;
|
|
|
|
--color-link: #6e85d8;
|
|
|
|
--color-link-red: #e45d52;
|
|
|
|
--color-progressive: #6e85d8;
|
|
|
|
--background-color-destructive: #e45d52;
|
|
|
|
--color-progressive--active: #afb6e9;
|
|
|
|
--background-color-base: #101418;
|
|
|
|
--color-visited: #977dbd;
|
|
|
|
--background-color-interactive: #202122;
|
|
|
|
--background-color-interactive-subtle: #202122;
|
|
|
|
--background-color-progressive-subtle: #202122;
|
|
|
|
--border-color-base: #2e3136;
|
|
|
|
--border-color-inverted: #f8f9fa;
|
2024-02-14 21:18:21 +00:00
|
|
|
--border-color-muted: #2e3136;
|
2024-02-13 14:50:30 +00:00
|
|
|
--border-color-progressive--focus: #afb6e9;
|
|
|
|
--border-color-subtle: #d4d5d5;
|
|
|
|
--border-color-transparent: transparent;
|
|
|
|
--box-shadow-color-progressive--focus: #afb6e9;
|
2024-03-04 22:43:15 +00:00
|
|
|
--color-error: #f8a397;
|
2024-02-13 14:50:30 +00:00
|
|
|
--color-inverted: #f8f9fa;
|
|
|
|
--color-link-red--visited: #b97876;
|
|
|
|
--color-link-external: #6e85d8;
|
|
|
|
--color-link-external--visited: #b97876;
|
|
|
|
--color-link-external--active: #2a4b8d;
|
2024-02-16 14:35:19 +00:00
|
|
|
--color-link--visited: #977dbd;
|
2024-02-27 19:17:07 +00:00
|
|
|
--box-shadow-color-drawer: #000;
|
2024-02-23 19:33:12 +00:00
|
|
|
--color-emphasized: #fff;
|
2024-03-04 22:43:15 +00:00
|
|
|
|
|
|
|
// Message box colors. [[T358402#9598616]]
|
|
|
|
--background-color-error-subtle: #70231f;
|
|
|
|
--background-color-warning-subtle: #4f3a1a;
|
|
|
|
--background-color-success-subtle: #194538;
|
|
|
|
--background-color-notice-subtle: #202122;
|
|
|
|
--border-color-error: #e45d52;
|
|
|
|
--border-color-warning: #ad822b;
|
|
|
|
--border-color-success: #0f9b7a;
|
|
|
|
--border-color-notice: #72777d;
|
|
|
|
--color-warning: #e7b032;
|
|
|
|
--color-success: #74c9ac;
|
|
|
|
--color-notice: #f8f9fa;
|
|
|
|
|
|
|
|
--minerva-diff-deletedline: #886525;
|
|
|
|
--minerva-diff-addedline: #36c;
|
2024-02-01 17:33:08 +00:00
|
|
|
}
|
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
/**
|
|
|
|
* Forced night mode.
|
|
|
|
*
|
|
|
|
* Applies the night mode color palette per the users explicit preference,
|
|
|
|
* regardless of system settings.
|
|
|
|
*/
|
|
|
|
html.skin-night-mode-clientpref-1 {
|
|
|
|
color-scheme: dark;
|
|
|
|
.mixin-night-mode-palette();
|
|
|
|
}
|
|
|
|
|
|
|
|
html.skin-night-mode-clientpref-1 .skin-invert {
|
2024-02-23 18:18:11 +00:00
|
|
|
color-scheme: light;
|
|
|
|
filter: invert( 1 ) hue-rotate( 180deg );
|
|
|
|
}
|
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
html.skin-night-mode-clientpref-1 .notheme {
|
|
|
|
color-scheme: light;
|
2024-02-01 17:33:08 +00:00
|
|
|
}
|
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
/**
|
|
|
|
* Auto night mode.
|
|
|
|
*
|
|
|
|
* Applies the night mode color palette only in response to system settings.
|
|
|
|
*/
|
2024-02-01 17:33:08 +00:00
|
|
|
@media ( prefers-color-scheme: dark ) {
|
|
|
|
html.skin-night-mode-clientpref-2 {
|
2024-02-29 22:46:54 +00:00
|
|
|
color-scheme: light dark;
|
2024-02-27 19:17:07 +00:00
|
|
|
.mixin-night-mode-palette();
|
|
|
|
}
|
|
|
|
|
|
|
|
html.skin-night-mode-clientpref-2 .notheme {
|
|
|
|
color-scheme: light;
|
|
|
|
}
|
2024-02-23 18:18:11 +00:00
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
html.skin-night-mode-clientpref-2 .skin-invert {
|
|
|
|
color-scheme: light;
|
|
|
|
filter: invert( 1 ) hue-rotate( 180deg );
|
2024-02-01 17:33:08 +00:00
|
|
|
}
|
|
|
|
}
|