R-TEK / colr_pickr

Colr Pickr, a vanilla JavaScript color picker component built with SVGs, with features like saving colors. Similar design to the chrome-dev-tools color picker.
https://r-tek.github.io/colr_pickr/
MIT License
30 stars 7 forks source link

Is there way to setColor and Clear color value #16

Closed notrealdev closed 3 years ago

notrealdev commented 3 years ago

Hi, is there way to:

R-TEK commented 3 years ago

To set a color: Syntax colorPickerComp.colorChange([color], [Button which open the picker]);

Example: colorPickerComp.colorChange('#000', document.getElementById('color-picker-button'));

To clear a color Same as above but color is '' (empty string)

notrealdev commented 3 years ago

Thank you so much!