unocss能否直接使用css变量?-灵析社区

北北che

比如定义了一个变量 `--text-color:red,`能否则直接使用类名`color-[--text-color]`或者类似的其他能直接用变量名的写法

阅读量:157

点赞量:0

问AI
可以在 unocss 的配置文件里进行 theme color 配置,然后就可以随意组合使用了 theme: { colors: { 'info': '#bfbfbf', // class="text-info" 'content': { 'primary': 'fe003b', // class="text-content-primary" }, }, } 如果需要直接使用 css 变量的话可以直接写成 "class="text-[--red-color]"" 或者 "class="text-$red-color""