JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://www.google.com/">GOOGLE</a>

CSS

.a {
        color: lime;
        -webkit-transition: color 1s;
        -moz-transition:    color 1s;
        -ms-transition:     color 1s;
        -o-transition:      color 1s;
        transition:         color 1s;
    }
    
    .a:hover {
        color: red;
    }