UNPKG

color-tf

Version:

RGB, HSL, HSV, HWB and more color models convertors

9 lines (7 loc) 162 B
var hsl2hsv = (h, s, l) => { const t = s * (l < 0.5 ? l : 1 - l), V = l + t, S = l > 0 ? 2 * t / V : 0; return [h, S, V]; }; export default hsl2hsv;