astro-ghostcms/.pnpm-store/v3/files/3c/98758d9365ea70df2e27ad37ee7...

9 lines
468 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;
/**Returns the hex value of the color string or the input string */
export declare function convertCssColorToHex(color: string): string;