ivanvmat / color-picker

:droplet: Flat and simple color-picker library. No dependencies, no jquery.
https://ivanvmat.github.io/color-picker/
MIT License
20 stars 5 forks source link

rgb input of [0,0,0] gets treated as [255,255,255] #8

Open tudormot opened 8 months ago

tudormot commented 8 months ago

I expect the culprit is line 244 in .js file :

let _color = new HSVaColor().fromRGBa(config.color.r || 255, config.color.g || 255, config.color.b || 255);