astro-ghostcms/.pnpm-store/v3/files/65/43dd511459cbc857473fad53338...

9 lines
324 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export declare type GetColorTypeHex = 'hex' | 'hex-short' | 'hex-without-alpha' | 'hex-without-alpha-short';
export declare type GetColorType = 'rgb' | GetColorTypeHex | 'rgba' | 'object' | 'hsv';
export interface GetColorOptions {
/**
* if true `#fff` will be output as `#FFF`
*/
UpperCaseHex: boolean;
}