Skip to content

Instantly share code, notes, and snippets.

@avdyushin
Created September 2, 2013 07:18
Show Gist options
  • Save avdyushin/6410010 to your computer and use it in GitHub Desktop.
Save avdyushin/6410010 to your computer and use it in GitHub Desktop.
Generates random hex color string for CSS style
function randomHexColor() {
var v = ( Math.floor( Math.random() * 0xFFFFFF ) ).toString(16);
while ( v.length < 6 ) { v = '0' + v; }
return ( '#' + v );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment