We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a feature request
Support for other color representations would be great, e.g. rgb(), rgba(), hsl(), hsla(). https://developer.mozilla.org/en-US/docs/Web/CSS/color_value
rgb()
rgba()
hsl()
hsla()
Right now some of them get parsed but into something wrong. E.g. rgb(255, 0, 153, 1) will get parsed as #115533 while it is #FF0099.
rgb(255, 0, 153, 1)
#115533
#FF0099
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a feature request
Support for other color representations would be great, e.g.
rgb()
,rgba()
,hsl()
,hsla()
. https://developer.mozilla.org/en-US/docs/Web/CSS/color_valueRight now some of them get parsed but into something wrong. E.g.
rgb(255, 0, 153, 1)
will get parsed as#115533
while it is#FF0099
.The text was updated successfully, but these errors were encountered: