JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

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

CSS

.box {
    width: 100px;
    height: 100px;
    background: red;
    animation: a 1s;
}
@keyframes a {
    100% {
        background: blue;
    }
}