UNPKG

302 BTypeScriptView Raw
1/**
2 * @internal
3 * Get a CSS color string from some color components.
4 * If `a` is specified and not 100, returns an `rgba()` string.
5 * Otherwise returns `hex` prefixed with #.
6 */
7export declare function _rgbaOrHexString(r: number, g: number, b: number, a: number | undefined, hex: string): string;