Skip to content

Instantly share code, notes, and snippets.

@samhernandez
Created June 5, 2013 20:34
Show Gist options
  • Save samhernandez/5717071 to your computer and use it in GitHub Desktop.
Save samhernandez/5717071 to your computer and use it in GitHub Desktop.
Quick color hex value in JavaScript. Taken from the comments at http://www.paulirish.com/2009/random-hex-color-code-snippets/
var randomBgHex = '#' + ('000000' + Math.floor(Math.random()*16777215).toString(16)).slice(-6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment