انسخ الكود ذي الصلة والصقه في قالب extra.less الخاص بك.
CSS:
.randcl{
color: gold;
background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
-webkit-background-clip: text;
-webkit-animation: randclanim 2s infinite linear;
font-weight: bold;
}
@keyframes randclanim{
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(360deg);
}
}