JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://www.bitstorm.org/jquery/color-animation/jquery.animate-colors-min.js"></script>
<div id="color">TEXT</div>
CSS
#color{background:red; height:300px; width:300px; color:blue; font-size:3em;}
JavaScript
$('#color').on('click',function(){
$(this).animate({backgroundColor:'#400101', color:'#fff'});
});