Last active
April 3, 2019 14:44
-
-
Save derhuerst/9142b15c78f3bfdbddfe to your computer and use it in GitHub Desktop.
The shortest JavaScript hex color generator.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/derhuerst/9142b15c78f3bfdbddfe | |
function rHC(){var n=6,s='#';while(n--){s+=(Math.random()*16|0).toString(16)}return s} |
@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
"#"+((1<<24)*Math.random()|0).toString(16)
'#'+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
@derhuerst I don't think so, dear!
const rHC = () => '#'+Math.floor(Math.random()*16777215).toString(16);