Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Last active February 3, 2016 20:43
Show Gist options
  • Save wholypantalones/69e768440d89e7ed6c91 to your computer and use it in GitHub Desktop.
Save wholypantalones/69e768440d89e7ed6c91 to your computer and use it in GitHub Desktop.
Six digit random hex color generator
// http://www.paulirish.com/2009/random-hex-color-code-snippets/
'#'+('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