Friday, May 10, 2024
 Popular · Latest · Hot · Upcoming
15
rated 0 times [  18] [ 3]  / answers: 1 / hits: 25475  / 14 Years ago, fri, august 6, 2010, 12:00:00

How do I convert HSB color to HSL?


Photoshop shows HSB color in its color picker. HSB color cannot be used in CSS, but HSL can.


I tried this JS:


function hsb2hsl(h, s, b) {
return {
h: h,
s: s,
l: b-s/2
}
}

But hsb2hsl(0, 100, 50).l == 0 instead of 25


Update: Can I do that without converting HSB → RGB → HSL?


More From » colors

 Answers
111

I'm afraid my Javascript knowledge is lacking, but you should be able to infer the conversion from http://ariya.blogspot.com/2008/07/converting-between-hsl-and-hsv.html


[#96006] Tuesday, August 3, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
acaciac

Total Points: 317
Total Questions: 117
Total Answers: 128

Location: France
Member since Thu, Oct 27, 2022
2 Years ago
;