UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

15 lines (14 loc) 321 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = hsvToHsl; function hsvToHsl(hsv) { var hh = (200 - hsv.s) * hsv.v / 100; return { h: hsv.h, s: hh > 0 && hh < 200 ? hsv.s * hsv.v / 100 / (hh <= 100 ? hh : 200 - hh) * 100 : 0, l: hh / 2, a: hsv.a }; }