Skip to content

Instantly share code, notes, and snippets.

@ashaw
Created March 11, 2011 10:45
Show Gist options
  • Save ashaw/865711 to your computer and use it in GitHub Desktop.
Save ashaw/865711 to your computer and use it in GitHub Desktop.
//love this thing @tysone made to randomly generate only pretty colors
var random_color = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 182)) + ',' + (Math.floor(Math.random() * 230)) + ')';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment