culori
Version:
A general-purpose color library for JavaScript
22 lines (16 loc) • 359 B
JavaScript
import rgb from '../rgb/definition.js';
import convertRgbToLrgb from './convertRgbToLrgb.js';
import convertLrgbToRgb from './convertLrgbToRgb.js';
const definition = {
...rgb,
mode: 'lrgb',
toMode: {
rgb: convertLrgbToRgb
},
fromMode: {
rgb: convertRgbToLrgb
},
parse: ['srgb-linear'],
serialize: 'srgb-linear'
};
export default definition;