“JavaScript Generador de colores aleatorios” Código de respuesta

JS Color hexagonal aleatorio

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

JavaScript Generador de colores aleatorios

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

función para generar un color aleatorio en JavaScript

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

Javascript Color aleatorio

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

Javascript Color aleatorio

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

JavaScript Generador de colores aleatorios

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

Respuestas similares a “JavaScript Generador de colores aleatorios”

Preguntas similares a “JavaScript Generador de colores aleatorios”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código