js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
js random hex color
'#'+Math.floor(Math.random()*16777215).toString(16);
js random color
//1.
var color = '#'+Math.floor(Math.random()*256).toString(10);
//2.
var color = '#'+Math.floor(Math.random()*0xffffff).toString(16);
//3.
function rgb(){// rgb color random
var r = Math.floor(Math.random()*256);
var g = Math.floor(Math.random()*256);
var b = Math.floor(Math.random()*256);
var rgb = 'rgb('+r+','+g+','+b+')';
return rgb;
}
//4.
function color16(){// hexadecimal color random
var r = Math.floor(Math.random()*256);
var g = Math.floor(Math.random()*256);
var b = Math.floor(Math.random()*256);
var color = '#'+r.toString(16)+g.toString(16)+b.toString(16);
return color;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us