UNPKG

random-hex-color

Version:
6 lines (4 loc) 148 B
'use strict' module.exports = function randomHexColor() { return '#' + ('000000' + Math.floor(Math.random()*16777215).toString(16)).slice(-6) };