JSFiddle - React, Tailwind, and code Playground

by sc0rp10

HTML

<div class="foo" style="color: green !important;">im red</div>

CSS

@keyframes t {
    to {
        color: red;
    }
}
.foo {
    animation: t 0.01s infinite forwards;
    animation-iteration-count: 1;
    font-size: 33px;
}