JSFiddle - React, Tailwind, and code Playground
JavaScript
const color = () => Math.round(Math.random() * 0xffffff).toString(16).padStart(6, '0');
setInterval(() => {
let c = color();
console.log(c);
document.body.style.backgroundColor = `#${c}`;
}, 300);