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}
@arturz
Copy link

arturz commented Oct 6, 2017

@derhuerst I don't think so, dear!
const rHC = () => '#'+Math.floor(Math.random()*16777215).toString(16);

@stonegray
Copy link

stonegray commented Apr 13, 2018

@derhuerst @Reski78
rHC=_=>'#'+((Math.random()*2**24-1)<0).toString(16): 51

const rHC = () => '#'+Math.floor(Math.random()*16777215).toString(16);: 70
function rHC(){var n=6,s='#';while(n--){s+=(Math.random()*16|0).toString(16)}return s}: 86

@chrisallick
Copy link

"#"+((1<<24)*Math.random()|0).toString(16)

@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