office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
8 lines (7 loc) • 302 B
TypeScript
/**
* @internal
* Get a CSS color string from some color components.
* If `a` is specified and not 100, returns an `rgba()` string.
* Otherwise returns `hex` prefixed with #.
*/
export declare function _rgbaOrHexString(r: number, g: number, b: number, a: number | undefined, hex: string): string;