JSFiddle - React, Tailwind, and code Playground

by Christian Sonne

CSS

@keyframes background {
    0% {background-color: white}
    25% {background-color: limegreen}
    50%{background-color: lime}
    75%{background-color: limegreen}
    100%{background-color: white}
}

body {
  background: red;
  animation-name: background;
  animation-duration: 10s;
  animation-iteration-count: 1;
}