Open
Description
I have the following:
/* colors.css */
@value midnight: #182947;
/* foo.css */
@value midnight from './colors.css';
.root {
background-color: midnight;
background-color: rgba(midnight, 0.97);
}
The output of this that I see in the browser is (similar to):
.foo__root___hwRbh {
background-color: #182947;
background-color: rgba(i__const_midnight_0, 0.97);
}
The value for midnight
is not being interpolated correctly in the rgba() instance.
This occurs with [email protected]
and with postcss-loader
removed from my webpack configuration (I thought maybe one of my postcss plugins were conflicting).
Is this a bug? Or an unsupported use case?