有没有可能把顺风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",
},
},
],```发布于 2021-09-22 00:56:59
您应该放入:
:root { --primary-color:#570df8; }在您的主样式文件中的@tailwind指令之后。
https://stackoverflow.com/questions/69275322
复制相似问题