Template:Blue-invert/styles.css

From Eurovision Wiki
Revision as of 06:05, 20 March 2026 by Alfie (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
.blue-invert {
	color: blue;
}

.red-invert {
	color: red;
}

@media screen {
	html.skin-theme-clientpref-night .blue-invert {
		color: #b9bbf7;
	}
	
	html.skin-theme-clientpref-night .red-invert {
		color: #d0717a;
	}
}

@media screen and ( prefers-color-scheme: dark ) {
	html.skin-theme-clientpref-os .blue-invert {
		color: #b9bbf7;
	}
	
	html.skin-theme-clientpref-os .red-invert {
		color: #d0717a;
	}
}