JSFiddle - React, Tailwind, and code Playground

by spydmobile

HTML

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Qui ad quos autem beatae nulla in.</p>

CSS

html{
  background-color:#494949;
}

p {
  animation: color-change 2s infinite;
}

@keyframes color-change {
  0% { color: red; }
  50% { color: blue; }
  100% { color: red; }
}