JSFiddle - React, Tailwind, and code Playground

by Kawaljit Singh

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;
}