JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<div class="test">test</div>

CSS

@keyframes flash {
  0%, 100% { color: red; }
  50% { color: blue; }
}

.test {
  animation: flash ease-in-out 1s infinite;
}