office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
16 lines • 479 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var consts_1 = require("./consts");
/** Converts HSV components to an HSL color. */
function hsv2hsl(h, s, v) {
s /= consts_1.MAX_COLOR_SATURATION;
v /= consts_1.MAX_COLOR_VALUE;
var l = (2 - s) * v;
var sl = s * v;
sl /= l <= 1 ? l : 2 - l;
sl = sl || 0;
l /= 2;
return { h: h, s: sl * 100, l: l * 100 };
}
exports.hsv2hsl = hsv2hsl;
//# sourceMappingURL=hsv2hsl.js.map
;