// as rgb
var r = () => Math.random() * 256 >> 0;
var color = `rgb(${r()}, ${r()}, ${r()})`;
// as hexa color:
var randomColor = '#'+Math.floor(Math.random()*16777215).toString(16);
//generates a random color -> #56eec7
var randomColor = Math.floor(Math.random()*16777215).toString(16);
Create a snippet
function getRandomColor() {
const hue=240 + Math.random() * 260;
return "hsl(" + hue + ", 50%, 60%)";
}
Hey do not forget to write the code with your hands :::