Name color for a specific user

In extra.less add.
1589217569281.png

1589217581894.png

1589217598445.png

Less:
.username[data-user-id="1"] span {
    -webkit-animation:s-username 4s linear infinite;
    -moz-animation:s-username 4s linear infinite;
    -ms-animation:s-username 4s linear infinite;
    -o-animation:s-username 4s linear infinite;
    animation:s-username 4s linear infinite;
}
@-moz-keyframes s-username {
    0% { color: #FF1919; }
    15% { color: #E019FF; }
    30% { color: #4F19FF; }
    45% { color: #19A7FF; }
    60% { color: #19FFDC; }
    75% { color: #65FF19; }
    90% { color: #FFE019; }
}
@-webkit-keyframes s-username {
    0% { color: #FF1919; }
    15% { color: #E019FF; }
    30% { color: #4F19FF; }
    45% { color: #19A7FF; }
    60% { color: #19FFDC; }
    75% { color: #65FF19; }
    90% { color: #FFE019; }
}
Just a nickname color change.
Less:
.username[data-user-id="1"] span {
    color: green;
}
Where - data-user-id = "1" -> 1- user id, replace with your own.
 
Back
Top