UNPKG

@fluentui/react

Version:

Reusable React components for building web experiences.

11 lines 493 B
import { MAX_COLOR_ALPHA } from './consts'; /** * @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 function _rgbaOrHexString(r, g, b, a, hex) { return a === MAX_COLOR_ALPHA || typeof a !== 'number' ? "#".concat(hex) : "rgba(".concat(r, ", ").concat(g, ", ").concat(b, ", ").concat(a / MAX_COLOR_ALPHA, ")"); } //# sourceMappingURL=_rgbaOrHexString.js.map