UNPKG

color-tf

Version:

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

6 lines (3 loc) 94 B
'use strict'; var hsv2hwb = (h, s, v) => [h, (1 - s) * v, 1 - v]; module.exports = hsv2hwb;