JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://raw.github.com/jquery/jquery-color/master/jquery.color.js"></script>
<a href="#1">Linke 1</a> | 
<a href="#2">Link 2</a> | 
<a href="#3">Link 3 </a>

JavaScript

$('a').hover(function(){
    
    // DONT USE HOVER !!
    // #66FF00 = color to fade | 1000 = time of fading
    $(this).animate({color:'#FFFFFF'},100);
    $(this).animate({color:'#000000'},100);
    
});