get-random-hex
v1.0.0
Published
A simple utility to generate random hex color codes.
Readme
🎨 get random hex
A simple utility to generate random hex color codes.
Install
npm install get-random-hexUsage
const { getRandomHexColor, getMultipleColors } = require('get-random-hex');
console.log(getRandomHexColor());
// → #a3e12f
console.log(getMultipleColors(5));
// → [ '#f1c40f', '#3498db', '#2ecc71', '#e74c3c', '#9b59b6' ]