Skip to content

Instantly share code, notes, and snippets.

@klebba
Created June 24, 2014 04:41
Show Gist options
  • Save klebba/0fc275d818462bbaf550 to your computer and use it in GitHub Desktop.
Save klebba/0fc275d818462bbaf550 to your computer and use it in GitHub Desktop.
Random RGB + A
var randomRGBA: function(alpha) {
var r = function () { return Math.floor(Math.random()*256); );
var a = alpha || 1;
return 'rgba(' + r() + ',' + r() + ',' + r() + ',' + a + ')';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment