i am trying this but no result come
i post this code in theme custome css
.vip {
background-clip: border-box;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
color: #FF512F;
font-weight: 700;
text-shadow: 0px 0px 5px #727309;
background-image: url(https://i.imgur.com/JJdE5ll.gif),linear-gradient(90deg,#f00 0%,#29ff00 100%,#fff);
animation: vipanim 5s infinite linear;
}
@keyframes vipanim {
from {
filter: hue-rotate(-360deg)
}
to {
filter: hue-rotate(360deg)
}
}
and the post this in-group formate Html
<span class="vip"></span>
but reciving no result can anybody tell me what i am doing wrong ?