source: trip-planner-front/node_modules/colord/plugins/xyz.d.ts@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 405 bytes
Line 
1import { XyzaColor } from "../types";
2import { Plugin } from "../extend";
3declare module "../colord" {
4 interface Colord {
5 toXyz(): XyzaColor;
6 }
7}
8/**
9 * A plugin adding support for CIE XYZ colorspace.
10 * Wikipedia: https://en.wikipedia.org/wiki/CIE_1931_color_space
11 * Helpful article: https://www.sttmedia.com/colormodel-xyz
12 */
13declare const xyzPlugin: Plugin;
14export default xyzPlugin;
Note: See TracBrowser for help on using the repository browser.