xxxxxxxxxx
const setBg = () => {
const randomColor = Math.floor(Math.random()*16777215).toString(16);
document.body.style.backgroundColor = "#" + randomColor;
color.innerHTML = "#" + randomColor;
}
genNew.addEventListener("click", setBg);
setBg();
xxxxxxxxxx
function generateRandomColor() {
var letters = '0123456789ABCDEF';
var color = '#';
for (var i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
var randomColor=generateRandomColor();//"#F10531"
xxxxxxxxxx
function random(number){
return Math.floor(Math.random()*number);;
}
function randomColor(){
return 'rgb('+random(255)+','+random(255)+','+random(255)+')';
}
xxxxxxxxxx
// 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
xxxxxxxxxx
'#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6)
xxxxxxxxxx
var randomColor = '#'+Math.floor(Math.random()*16777215).toString(16);
//generates a random color -> #56eec7
xxxxxxxxxx
var randomColor = Math.floor(Math.random()*16777215).toString(16);
xxxxxxxxxx
const randomColor = `#${Math.floor(Math.random() * 0xffffff).toString(16)}`;