JSFiddle - React, Tailwind, and code Playground

by infous

HTML

<a href="#">Hello, World!</a>

CSS

a {
  font-size: 72px; 
  color: orange;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  transition: filter 1s, -webkit-filter 1s;
}
a:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}