office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
14 lines • 597 B
JavaScript
define(["require", "exports", "./consts", "./clamp"], function (require, exports, consts_1, clamp_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/** Corrects an HSV color to fall within the valid range. */
function correctHSV(color) {
return {
h: clamp_1.clamp(color.h, consts_1.MAX_COLOR_HUE),
s: clamp_1.clamp(color.s, consts_1.MAX_COLOR_SATURATION),
v: clamp_1.clamp(color.v, consts_1.MAX_COLOR_VALUE),
};
}
exports.correctHSV = correctHSV;
});
//# sourceMappingURL=correctHSV.js.map