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
As you can see, the second background-color property is wrong. This seems to happen when I put var(... from ...) stuff within rgb, rgba, hsl or hsla function calls (probably others too). I would expect it to generate background-color: rgb(var(--sE19ba_blue)).
I also made a full stackblitz repro. Couldn't get the dashed identifiers to work in Parcel so I used Vite.
(Why would I ever let out the rgb in a variable? So I can set the transparency with rgba(var(--theme-primary), 0.5).)
The text was updated successfully, but these errors were encountered:
I have a file
colors.module.css
:And a file
title.module.css
:Which is converted to the following CSS:
As you can see, the second
background-color
property is wrong. This seems to happen when I putvar(... from ...)
stuff withinrgb
,rgba
,hsl
orhsla
function calls (probably others too). I would expect it to generatebackground-color: rgb(var(--sE19ba_blue))
.I also made a full stackblitz repro. Couldn't get the dashed identifiers to work in Parcel so I used Vite.
(Why would I ever let out the
rgb
in a variable? So I can set the transparency withrgba(var(--theme-primary), 0.5)
.)The text was updated successfully, but these errors were encountered: