如何更改 daisyUI 的默认配置?
可以通过tailwind.config.js
来配置 daisyUI 的配置。 默认配置:
module.exports = {
//...
// add daisyUI plugin
plugins: [require("daisyui")],
// daisyUI config (optional - here are the default values)
daisyui: {
themes: false, // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"]
darkTheme: "dark", // name of one of the included themes for dark mode
base: true, // applies background color and foreground color for root element by default
styled: true, // include daisyUI colors and design decisions for all components
utils: true, // adds responsive and modifier utility classes
prefix: "", // prefix for daisyUI classnames (components, modifiers and responsive class names. Not colors)
logs: true, // Shows info about daisyUI version and used config in the console when building your CSS
themeRoot: ":root", // The element that receives theme color CSS variables
},
//...
}
Boolean (default: true)
Boolean or array (default: false)
Boolean (default: true)
Boolean (default: true)
Boolean (default: true)
String (default: "dark")
dark
是默认黑暗模式主题(或者自定义的主题名字是 dark
)。通过这个配置,你可以给默认黑暗模式主题设定另一个主题。String (default: "")
btn
会变为 prefix-btn
。 如果你还使用其他的 CSS 库,并且有冲突,可以用这个方法来避免冲突问题。 颜色名字(例如: bg-primary
)或者 border-radius(例如: rounded-box
)不会受到这个参数的影响,因为这些参数是作为 Tailwind CSS 类的扩展来设计的。 daisyUI 的prefix
的功能(例如daisy-
)与 TailwindCSS 的 prefix
的功能(例如 tw-
)一起使用时,最后的类名是 tw-daisy-btn
。String (default: ":root")
*
可能很有用,因此所有组件都可以访问所需的 CSS 变量。