In
Just a nickname color change.
Where - data-user-id = "1" -> 1- user id, replace with your own.
extra.less
add.
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; }
}
Less:
.username[data-user-id="1"] span {
color: green;
}