JSFiddle - React, Tailwind, and code Playground

HTML

<div id="target" style="height:150px; width:150px"></div>

JavaScript

$(function() {
	
	var color = "#" + Math.random().toString(16).slice(2, 8);
	 $("#target").css("background-color", color);
    
});