randomColor
Generate a random color.
Usage
js
import { randomColor } from 'js-cool'Signature
typescript
function randomColor(): stringReturns
string - Random hex color string.
Examples
js
randomColor() // '#a1b2c3'
randomColor() // '#ff6600'
// Use for styling
element.style.backgroundColor = randomColor()