JSFiddle - React, Tailwind, and code Playground

HTML

<a href="" id="test">Text</a>

CSS

@keyframes test
{
    from { color: red; }
    to { color: green; }
}
#test
{
    animation: test 3s 1s both;
    color: blue;
}