UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Microsoft 365.

8 lines 297 B
import { hsl2hsv } from './hsl2hsv'; import { hsv2rgb } from './hsv2rgb'; /** Converts HSL components to an RGB color. Does not set the alpha value. */ export function hsl2rgb(h, s, l) { var hsv = hsl2hsv(h, s, l); return hsv2rgb(hsv.h, hsv.s, hsv.v); } //# sourceMappingURL=hsl2rgb.js.map