Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript random color generator

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) + ")";
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #random #color #generator
ADD COMMENT
Topic
Name
2+5 =