“Javascript Random Color Gerator” Respostas de código

JS cor hexadecimal aleatória

'#'+Math.floor(Math.random()*16777215).toString(16);
Jolly Jackal

Javascript Random Color Gerator

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"
Grepper

função para gerar cores aleatórias em javascript

function random(number){
    return Math.floor(Math.random()*number);;
}
function randomColor(){
 return 'rgb('+random(255)+','+random(255)+','+random(255)+')';    
}
Vikash Choubey

JavaScript Random Color

var r = () => Math.random() * 256 >> 0;
var color = `rgb(${r()}, ${r()}, ${r()})`;
TC5550

JavaScript Random Color

'#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6)
Bewildered Bat

Javascript Random Color Gerator

const randomHexColour = (function() {
	const hexValues = "123456abcdef";
	return function() {
		let hexString = "";
		for (let i = 0; i < 6; i++) {
			hexString += hexValues[Math.floor(Math.random() * hexValues.length)];
		}
		return "#" + hexString;
	}
})();
function randomRGBColour(alpha = false) {
	if (alpha) {
		return "rgba(" + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ", " + Math.random() + ")";
	}
	return "rgb(" + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ")";
}
MattDESTROYER

Respostas semelhantes a “Javascript Random Color Gerator”

Perguntas semelhantes a “Javascript Random Color Gerator”

Procure respostas de código populares por idioma

Procurar outros idiomas de código