JSFiddle - React, Tailwind, and code Playground

by Anderson Carlos Woss

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);