JSFiddle - React, Tailwind, and code Playground

by mo_esmp

HTML

<h1 class="site__title mega">Animate.css</h1>

CSS

.site__title {
    color: #f35626;
    background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);
 background-image: -moz-linear-gradient(92deg,#f35626,#feab3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 60s infinite linear;
 -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -moz-animation: hue 60s infinite linear;
  }

@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }

  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
@-moz-keyframes hue {
  from {
    -moz-filter: hue-rotate(0deg);
  }

  to {
    -moz-filter: hue-rotate(-360deg);
  }
}