UNPKG

@atlaskit/adf-schema

Version:

Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs

4 lines 188 B
import { labToLch } from './lab-to-lch'; import { rgbToXyz } from './rgb-to-xyz'; import { xyzToLab } from './xyz-to-lab'; export const rgbToLch = rgb => labToLch(xyzToLab(rgbToXyz(rgb)));