JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<p class="texty">Hello There!</p>
</div>
CSS
.texty {
font-size: 3em;
animation: scaleAnimation 7s ease infinite;
}
@keyframes scaleAnimation {
0% {
color: black;
}
25% {
color: red;
}
50% {
color: green;
}
75% {
color: blue;
}
100% {
color: black;
}
}