randomColor icon indicating copy to clipboard operation
randomColor copied to clipboard

A tiny script for generating attractive colors

Results 25 randomColor issues
Sort by recently updated
recently updated
newest added

getColorInfo(hue) sometimes returned "Color not found" when hue was negative

``` #f762e1 randomColor({ luminosity: 'bright', seed: '10111155892742231', }) #f762e1 randomColor({ luminosity: 'bright', seed: '10111156349842232', }) ``` How to get different color?

Reproduction on JSFiddle: https://jsfiddle.net/mattrossman/koph7sub/1/ ```js console.log(randomColor({ hue: "#EF1FE8", count: 2 })) ``` produces: ``` Uncaught TypeError: range is undefined ``` The trace points here https://github.com/davidmerfield/randomColor/blob/68e564292df835ea1700269d455bdee372fd74d5/randomColor.js#L321

Hey @davidmerfield! Thanks for this package, it's a neat and simple tool that I find really useful, especially for seeding colors based on inputs. I wanted to ask a question...