MediaWiki:Common.less/highlight.less

// <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.
 */

#mw-content-text .mw-userlink {

    // Approved bot accounts
    &[title="User:GauBot"],
    &[title="User:Abuse filter"] {
        color: var(--awb-color);
    }
    
    // Approved administrator accounts
    &[title="User:Cook Me Plox"],
    &[title="User:Gaz Lloyd"],
    &[title="User:Habblet"],
    &[title="User:Im Wired In"],
    &[title="User:Kelsey"],
    &[title="User:Merds"],
    &[title="User:Mudscape"],
    &[title="User:TehKittyCat"],
    &[title="User:Wolaznik"] {
        color: var(--admin-color);
    }
    
    // Approved bureaucrat accounts
    &[title="User:BlackHawk"],
    &[title="User:Gau Cho"],
    &[title="User:InvalidCards"] {
        color: var(--bureaucrat-color);
    }

}