You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The color hsl(0, 0%, 10%) with lightness multiplied by 5% should be nearly black, but the output seems to be hsl(0, 0%, 10% * 5) == rgb(128, 128, 128) rather than hsl(0, 0%, 10% * 5%). If use 0.05 instead the output is correct.
The color hsl(0, 0%, 10%) with lightness multiplied by 5% should be nearly black, but the output seems to be hsl(0, 0%, 10% * 5) == rgb(128, 128, 128) rather than hsl(0, 0%, 10% * 5%). If use 0.05 instead the output is correct.
test.css:
postcss.config.js:
Output:
The version is 4.0.0
Since the spec says we should use
<percentage>
, I think this is a bug.The text was updated successfully, but these errors were encountered: