UNPKG
random-hex-color
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.1
Generate a random hex color.
github.com/johnotander/random-hex-color
johnotander/random-hex-color
random-hex-color
/
index.js
6 lines
(4 loc)
•
148 B
JavaScript
View Raw
1
2
3
4
5
6
'use strict'
module
.
exports
=
function
randomHexColor
(
) {
return
'#'
+ (
'000000'
+
Math
.
floor
(
Math
.
random
()*
16777215
).
toString
(
16
)).
slice
(-
6
) };