allc
Version:
A small typescript package for color conversion.
20 lines (18 loc) • 403 B
text/typescript
export * from "./multi";
/**
* A color space that is applicable to RGB-like color models. These are:
*
* * Linear RGB
* * RGB
* * HSL
* * HSV
* * HSI
*/
export type RGBColorSpace = "sRGB" | "Adobe RGB" | "Display P3";
/**
* A _perceptual_ color space. Applicable to LAB-like color models. These are:
*
* * LAB
* * LCH
*/
export type PerceptualColorSpace = "Ok" | "CIE";