我有
http://cssnext.io设置postcss解析器,我试图找到一种方法来设置variables.css文件,以包含我所有的主题设置.
到目前为止,variable.css看起来像是有几个vars
:root { --color-white: #FFF; --color-black: #000; }
我将其导入到我想要使用这些变量的其他文件中,所以@import’./variables.css’或类似,然后在该文件中使用它,如background-color:var( – color-white),例如但是我接到了警告:
variable ‘–color-white’ is undefined and used without a fallback
[postcss-custom-properties]