15 lines
197 B
JavaScript
15 lines
197 B
JavaScript
/**
|
|
* 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;
|