JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

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