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

7 lines
331 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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;