-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
Colors broken with UnoCSS v0.57 #216
Comments
Hi @hermit99 Sorry to say but I don't have enough bandwidth to work on this anymore. Feel free to submit a PR I'll surely merge it. Thanks for raising the issue. |
Hi @jd-solanki PR 218 raised for your review. |
.text-primary {
--un-text-opacity: 1;
color: hsl(var(--a-primary) / var(--un-text-opacity));
} But such css cannot be parsed correctly. The following code is the code that can be parsed correctly. .text-primary {
--un-text-opacity: 1;
color: hsl(var(--a-primary) , var(--un-text-opacity));
} |
Depending on how
That's what #219 was trying to fix anyway. |
@jd-solanki Would it be possible to merge this in? I'm currently having issues with the library trying to resolve this. |
I'd also like to add that this is genuinely the best component library I've ever used. The simplicity of it while looking incredible has made it genuinely amazing to develop with. |
Looks like with UnoCSS v0.57.0's breaking changes, Anu's hsla colors are also broken.
Could we align and keep hsla and rgba consistent with tailwindcss too?
The text was updated successfully, but these errors were encountered: