Skip to content

Instantly share code, notes, and snippets.

@derhuerst
Last active April 3, 2019 14:44
Show Gist options
  • Save derhuerst/9142b15c78f3bfdbddfe to your computer and use it in GitHub Desktop.
Save derhuerst/9142b15c78f3bfdbddfe to your computer and use it in GitHub Desktop.
The shortest JavaScript hex color generator.
// The shortest JavaScript hex color generator.
// Jannis R <[email protected]>
// https://gist.github.com/derhuerst/9142b15c78f3bfdbddfe
function randomHexColor(){
var n = 6, s = '#';
while(n--){
s += (Math.random() * 16 | 0).toString(16); // random char from 0 to f
}
return s;
}
// https://gist.github.com/derhuerst/9142b15c78f3bfdbddfe
function rHC(){var n=6,s='#';while(n--){s+=(Math.random()*16|0).toString(16)}return s}
@stonegray
Copy link

'#'+Math.random().toString(16).substr(-6);: 41 bytes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment