Skip to content

Instantly share code, notes, and snippets.

@sirdarthvader
Created June 13, 2018 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sirdarthvader/9eceb326360f06f02e2fabf302319718 to your computer and use it in GitHub Desktop.
Save sirdarthvader/9eceb326360f06f02e2fabf302319718 to your computer and use it in GitHub Desktop.
function randomColor(){
//pick a "red" from 0 - 255
var r = Math.floor(Math.random() * 256);
//pick a "green" from 0 -255
var g = Math.floor(Math.random() * 256);
//pick a "blue" from 0 -255
var b = Math.floor(Math.random() * 256);
return "rgb(" + r + ", " + g + ", " + b + ")";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment