UNPKG

color-tf

Version:

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

6 lines (3 loc) 125 B
'use strict'; var hwb2hsv = (h, w, b) => [h, b === 1 ? 0 : Math.max(0, 1 - w / (1 - b)), 1 - b]; module.exports = hwb2hsv;