UNPKG

color-tf

Version:

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

11 lines (7 loc) 176 B
'use strict'; var hsv2hsl = (h, s, v) => { const L = (2 - s) * v / 2, S = s * v / (L < 0.5 ? L * 2 : 2 - L * 2); return [h, S || 0, L]; }; module.exports = hsv2hsl;