en:mediawiki:gadget-DisambiguationLinks.css
/**
* Display links to disambiguation pages in orange
* @revision 1.0 (2015-05-27)
* @author Kaldari
*/
a.mw-disambig {
color: hsl(30, 100%, 45%);
}
@media screen {
html.skin-theme-clientpref-night a.mw-disambig {
color: hsl(30, 100%, 60%);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os a.mw-disambig {
color: hsl(30, 100%, 60%);
}
}