UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Microsoft 365.

12 lines 460 B
import { MAX_COLOR_ALPHA, MAX_COLOR_RGB } from './consts'; import { clamp } from './clamp'; /** Corrects an RGB color to fall within the valid range. */ export function correctRGB(color) { return { r: clamp(color.r, MAX_COLOR_RGB), g: clamp(color.g, MAX_COLOR_RGB), b: clamp(color.b, MAX_COLOR_RGB), a: typeof color.a === 'number' ? clamp(color.a, MAX_COLOR_ALPHA) : color.a, }; } //# sourceMappingURL=correctRGB.js.map