From RuneScape Classic Wiki
// <pre>
/**
* Highlighted usernames
*
* Instructions:
* The order that names appear on this list determine which title takes precedence.
* A user will be marked by the last entry in this list, no matter how many entries they have.
*
* Try to keep these lists alphabetised instead of adding to the end.
* Add comments for the unencoded name for accounts with url encoded characters, for example: %C9%98 -> ɘ
*/
@u: "/w/User:";
.mw-userlink {
// bots
&[href^="@{u}Abuse_filter"],
&[href^="@{u}Bot2Pla"],
&[href^="@{u}New_user_message"],
&[href^="@{u}Riblet15_bot_account"],
&[href^="@{u}TyBot"]
{
color: @lavender;
}
// jagex moderators
&[href^="@{u}Jagex_Stu"],
&[href^="@{u}Jimwip"],
&[href^="@{u}Mod_Ave"],
&[href^="@{u}Mod_Jam"]
{
background: url('filepath://Jagex_moderator_crown.png') left no-repeat;
padding-left: 15px;
image-rendering: -moz-crisp-edges; // firefox
image-rendering: pixelated; // chrome
image-rendering: crisp-edges; // safari
}
}