JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="box"></div>

CSS

.box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: red;
    animation: test 1s both infinite;
    animation-play-state: running, running;
}
@keyframes test {
    from {background: blue};
    to {background: yellow};
}