JSFiddle - React, Tailwind, and code Playground
by anoopsuda
HTML
<div class="msg-2">I'm here to help you create your innovation story submission - quick, guided, and easy.</div>
CSS
.msg-2 {
color: white;
animation: colorFade 4s ease forwards;
}
@keyframes colorFade {
0% {
color: white;
}
100% {
color: black;
}
}