JSFiddle - React, Tailwind, and code Playground

by jonahe

HTML

<button>
  Save
</button>

CSS

@keyframes save-me {
  0% {
    color: #d3d3d3;
  }
  50% {
    color: blue;
  }
}

button {
  animation: save-me 1s 0s ease-in-out infinite;
}