Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/*   based on Catppuccin Mocha   
* {
	--base: #1e1e2e;
	--mantle: #181825;
	--surface0: #313244;
	--overlay0: #6c7086;
	--overlay1: #7f849c;
	--text: #cdd6f4;
	--subtext0: #a6adc8;
	
	--peach: #fab387;
	--red: 243, 139, 168;
	--green: 166, 227, 161;
	--blue: #89b4fa;
}

   base   
body, .mw-body {
	color: var(--text)!important;
	border: 0;
}
body {
	background: var(--mantle);
}
a {
	color: var(--blue)!important;
}
.mw-body {
	background: var(--base)!important;
}
.mw-heading, h1, h2, h3, h4, h5, h6 {
	color: var(--text);
}
   mbox   
.mw-message-box {
	color: var(--text);
}
.mw-message-box-warning {
	background-color: var(--mantle);
	border-color: var(--peach);
}
.mw-parser-output .fmbox {
	background-color: var(--mantle)!important;
	border: 1px solid var(--subtext0);
}
.mw-parser-output .fmbox-warning {
	border: 1px solid var(--red);
}

   diff view   
.diff-addedline, .diff-deletedline, .diff-context {
	border-radius: 0;
}
.diff-deletedline {
	border-color: rgb(var(--red));
}
.diff-deletedline .diffchange {
	background: rgba(var(--red), 0.5);
}
.diff-addedline {
	border-color: rgb(var(--green));
}
.diff-addedline .diffchange {
	background: rgba(var(--green), 0.5);
}*/