Closed
Description
According to documentation https://lesscss.org/functions/#color-definition-hsl
hsl() function should output a color, but it does not. rgb() and hsv() behave as documented.
$ npx lessc --version
lessc 4.1.1 (Less Compiler) [JavaScript]
$ cat problem.less
.problem {
color: rgb(128, 255, 0);
background-color: hsl(90, 100%, 50%);
border-color: hsv(90, 100%, 50%);
}
$ npx lessc problem.less
.problem {
color: #80ff00;
background-color: hsl(90, 100%, 50%);
border-color: #408000;
}