User:CuriousSmudge123/common.css
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .js page for this skin can be added at User:CuriousSmudge123/common.js. |
/* I cant work out how to not make the colours change with dark mode :/ */
/* Im just gonna use dark reader to modify the css */
.mw-logo {
background: linear-gradient(180deg, #5BCEFA 20%, #F5A9B8 20%, 40%, #FFFFFF 40%, 60%, #F5A9B8 60%, 80%, #5BCEFA 80%);
}
/*
.mw-logo {
background: linear-gradient(180deg,
var(--gradient-color-1) 20%,
var(--gradient-color-2) 20%, 40%,
var(--gradient-color-3) 40%, 60%,
var(--gradient-color-2) 60%, 80%,
var(--gradient-color-1) 80%
);
}
:root {
--gradient-color-1-light: #5BCEFA;
--gradient-color-2-light: #F5A9B8;
--gradient-color-3-light: #FFFFFF;
--gradient-color-1-dark: #5BCEFA;
--gradient-color-2-dark: #F5A9B8;
--gradient-color-3-dark: #FFFFFF;
}
@media (prefers-color-scheme: dark) {
.mw-logo {
background: linear-gradient(180deg,
var(--gradient-color-1-dark) 20%,
var(--gradient-color-2-dark) 20%, 40%,
var(--gradient-color-3-dark) 40%, 60%,
var(--gradient-color-2-dark) 60%, 80%,
var(--gradient-color-1-dark) 80%
);
}
}
*/
.mw-logo-wordmark {
filter: invert(0) !important;
}
.mw-logo-tagline {
filter: invert(0) !important;
}