Skip to content

Instantly share code, notes, and snippets.

@theankitgaurav
Created June 21, 2016 06:52
Show Gist options
  • Save theankitgaurav/6288290677858f499cc1330584fd4369 to your computer and use it in GitHub Desktop.
Save theankitgaurav/6288290677858f499cc1330584fd4369 to your computer and use it in GitHub Desktop.
Random eye friendly color generator
var randomColor = function() {
return "hsl(" + Math.random() * 360 + ",50%,50%)";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment