JSFiddle - React, Tailwind, and code Playground
by harsh dand
HTML
<div class="top_title"></div>
CSS
.top_title {
width:200px;
height:200px;
}
JavaScript
var colors = ['ababab','cc66ff','fefefe','ff0000','ff9900'];
var random_color = colors[Math.floor((Math.random() * colors.length))];
$('.top_title').css('background-color','#'+random_color);