UNPKG

color-tf

Version:

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

4 lines (2 loc) 108 B
var hwb2hsv = (h, w, b) => [h, b === 1 ? 0 : Math.max(0, 1 - w / (1 - b)), 1 - b]; export default hwb2hsv;