Urara-Blog/node_modules/.pnpm-store/v3/files/d9/f7d1520d62f05c18f4f55835beaf685b19c00ab8e4efe8e80a66c9b51ef75d55605917edbec386b1fccfc7f36e1afff65c1f8529848134b47c4d0de7a8ee76
2022-08-14 01:14:53 +08:00

14 lines
405 B
Text

import { XyzaColor } from "../types";
import { Plugin } from "../extend";
declare module "../colord" {
interface Colord {
toXyz(): XyzaColor;
}
}
/**
* A plugin adding support for CIE XYZ colorspace.
* Wikipedia: https://en.wikipedia.org/wiki/CIE_1931_color_space
* Helpful article: https://www.sttmedia.com/colormodel-xyz
*/
declare const xyzPlugin: Plugin;
export default xyzPlugin;