Theming
Best Practices for Theming
Customizing Theme Colors
plugins: [require("daisyui")],
daisyui: {
themes: [
{
// Override the main theme by copying it and changing only the primary color
[config.theme.main]: {
...daisyThemes[config.theme.main],
primary: "#00CFFF",
},
},
],
}Dynamically Changing Themes
Dark Mode & Light Mode
Last updated