Files
2026-02-27 22:46:14 +01:00

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;