16 lines
315 B
JavaScript
16 lines
315 B
JavaScript
// THis does not work as module is not defined !!!
|
|
module.exports = {
|
|
//...
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
light: {
|
|
...require("daisyui/src/theming/themes")["light"],
|
|
"primary": "blue",
|
|
"secondary": "teal",
|
|
"accent": "#37cdbe",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
} |