astro-ghostcms/.pnpm-store/v3/files/72/b9e3e323be1b2b56b5e8d400ccf...

7 lines
331 B
Plaintext

import { RGBColor, HSVColor, StringColor } from './ColorTypes';
export declare function GetReadableTextColor(color: RGBColor | HSVColor | StringColor | string): RGBColor | HSVColor | "#000" | "#fff";
/**
* Shifts the hue of the `HSVColor` by the Value
*/
export declare function ShiftHue(hsv: HSVColor, value: number): HSVColor;