color-range-picker
v1.3.2
Published
Simple and lightweight ES6 color range picker
Downloads
15
Maintainers
Readme
Color Range Picker
Inspired by @wieringen's tinycolorpicker, this small library
renders a color circle from a configurable set of colors and can generate a range of shades from the picked color.
Demo
Install
npm i color-range-picker --save
Public properties and methods
| Name | Type | Description | Returns |
| ---- | ---- | ----------- | ------- |
| hex
| accessor | Get the hexadecimal notation of the last chosen color | String |
| rgb
| accessor | Get the rgb notation of the last chosen color | String |
| RGBToHex(Array/String)
| static method | Convert a RGB array or string to hexadecimal string | String |
| hexToRGB(Array/String)
| static method | Convert a hexadecimal string to a RGB array | Array/null |
| range(Array/String, Number)
| static method | Generate a range of colors from the currently picked color | Array/null |
| getFormat(Array/String)
| static method | Check the color format | String |
| toggle()
| method | Show or hide the ui | void |
| destroy()
| method | Remove the UI from the DOM | void |