Urara-Blog/node_modules/.pnpm-store/v3/files/9c/523525b419674fbc7822a0ce2d60718a8b210df41feda58426c0b94ddcc83062b659fb3b1f978c26f25b2e1607e4afb285ceaa8879b2e3052c36f631115210
2022-08-14 01:14:53 +08:00

23 lines
782 B
Text

import { LabaColor, AnyColor } from "../types";
import { Plugin } from "../extend";
declare module "../colord" {
interface Colord {
/**
* Converts a color to CIELAB color space and returns an object.
* The object always includes `alpha` value [0, 1].
*/
toLab(): LabaColor;
/**
* Calculates the perceived color difference for two colors according to
* [Delta E2000](https://en.wikipedia.org/wiki/Color_difference#CIEDE2000).
* Returns a value in [0, 1] range.
*/
delta(color?: AnyColor | Colord): number;
}
}
/**
* A plugin adding support for CIELAB color space.
* https://en.wikipedia.org/wiki/CIELAB_color_space
*/
declare const labPlugin: Plugin;
export default labPlugin;