office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
37 lines • 948 B
JavaScript
import { MAX_COLOR_RGB } from './consts';
/** Converts HSV components to an RGB color. Does not set the alpha value. */
export function hsv2rgb(h, s, v) {
s = s / 100;
v = v / 100;
var rgb = [];
var c = v * s;
var hh = h / 60;
var x = c * (1 - Math.abs((hh % 2) - 1));
var m = v - c;
switch (Math.floor(hh)) {
case 0:
rgb = [c, x, 0];
break;
case 1:
rgb = [x, c, 0];
break;
case 2:
rgb = [0, c, x];
break;
case 3:
rgb = [0, x, c];
break;
case 4:
rgb = [x, 0, c];
break;
case 5:
rgb = [c, 0, x];
break;
}
return {
r: Math.round(MAX_COLOR_RGB * (rgb[0] + m)),
g: Math.round(MAX_COLOR_RGB * (rgb[1] + m)),
b: Math.round(MAX_COLOR_RGB * (rgb[2] + m)),
};
}
//# sourceMappingURL=hsv2rgb.js.map