JSFiddle - React, Tailwind, and code Playground
HTML
<div id="color-test" style="width: 100px; height: 100px; border: 1px solid #b3b3b3;"></div>
JavaScript
$('#color-test').click(function () {
$(this).animate({'borderColor' : '#bb1607'}, 1000, function () {
$(this).animate({'borderColor' : '#b3b3b3'}, 1000);
});
});