UNPKG

@atlaskit/adf-schema

Version:

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

6 lines 216 B
import { labToLch } from './lab-to-lch'; import { rgbToXyz } from './rgb-to-xyz'; import { xyzToLab } from './xyz-to-lab'; export var rgbToLch = function rgbToLch(rgb) { return labToLch(xyzToLab(rgbToXyz(rgb))); };