bgrins / TinyColor

Fast, small color manipulation and conversion for JavaScript
https://bgrins.github.io/TinyColor/
MIT License
5.05k stars 439 forks source link

Convert HSL to HSLA #269

Open germain-gg opened 1 year ago

germain-gg commented 1 year ago

As explained on the MDN page for hsl(). The hsla() function is a legacy alias for hsl().

This library would not parse correctly HSL color that have an alpha channel using the hsl() function.

This pull request changes the parsing so that it accepts both hsl() and hsla(). And it will always output hsl().