UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Microsoft 365.

11 lines 428 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var hsv2rgb_1 = require("./hsv2rgb"); var rgb2hex_1 = require("./rgb2hex"); /** Converts HSV components to a hex color string (without # prefix). */ function hsv2hex(h, s, v) { var _a = hsv2rgb_1.hsv2rgb(h, s, v), r = _a.r, g = _a.g, b = _a.b; return rgb2hex_1.rgb2hex(r, g, b); } exports.hsv2hex = hsv2hex; //# sourceMappingURL=hsv2hex.js.map