32 lines
613 B
JavaScript
32 lines
613 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
mytheme: {
|
|
"primary": "#64279e",
|
|
"secondary": "#9454af",
|
|
"accent": "#6ff7c5",
|
|
"neutral": "#1f2329",
|
|
"base-100": "#2a3a47",
|
|
"info": "#8b9be5",
|
|
"success": "#79e2b4",
|
|
"warning": "#efb261",
|
|
"error": "#e1604c",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
// eslint-disable-next-line no-undef
|
|
plugins: [require("daisyui")],
|
|
}
|
|
|