UNPKG
color-tf
Version:
latest (5.1.2)
next (5.0.0-beta1)
5.1.2
5.1.1
5.1.0
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
5.0.0-beta1
RGB, HSL, HSV, HWB and more color models convertors
github.com/caub/color-tf
caub/color-tf
color-tf
/
hsv2hsl.js
11 lines
(7 loc)
•
176 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'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;