RGBA maker
//R
console.log(Math.floor(Math.random() * 255));
//G
console.log(Math.floor(Math.random() * 255));
//B
console.log(Math.floor(Math.random() * 255));
//A
console.log(Math.random() * 1);
//R
console.log(Math.floor(Math.random() * 255));
//G
console.log(Math.floor(Math.random() * 255));
//B
console.log(Math.floor(Math.random() * 255));
//A
console.log(Math.random() * 1);