【发布时间】:2021-11-15 09:29:10
【问题描述】:
是否可以将 tailwind daisyUI 与 CSS 变量结合使用?像这样?使用 DaisyUI
:root { --primary-color:#570df8; }
如何使用这样的东西?这不起作用,
themes: [
{
mytheme: {
primary: "var(--primary-color)", //not working
"primary-focus": "#4506cb",
"primary-content": "#ffffff",
secondary: "#f000b8",
"secondary-focus": "#bd0091",
"secondary-content": "#ffffff",
},
},
],```
【问题讨论】:
标签: javascript css reactjs tailwind-css