JSFiddle - React, Tailwind, and code Playground

by cssGuy

JavaScript

function hex() {
 var rand = Math.floor(Math.random() * 256).toString(16);
 if(rand.length == 1) {
  rand = rand.replace(rand, '0'+rand);
 }
 return rand;
}
document.body.style.background = '#' + hex() + hex() + hex();