JSFiddle - React, Tailwind, and code Playground
HTML
<button>
lipo
</button>
CSS
@keyframes test {
0% {
background: blue;
}
100% {
background: green;
}
}
button {
background: #ffffff;
animation-name: test;
animation-duration: 1s;
animation-iteration-count: infinite;
}