UNPKG

color-space

Version:

Collection of color space conversions

15 lines (13 loc) 197 B
/** * RGB space. * * @module color-space/rgb */ const rgb = { name: 'rgb', min: [0, 0, 0], max: [255, 255, 255], channel: ['red', 'green', 'blue'], alias: ['RGB'] }; export default rgb;