52 lines
826 B
JavaScript
52 lines
826 B
JavaScript
import daisyui from 'daisyui';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
daisyui: {
|
|
themes: [{
|
|
apptheme: {
|
|
"primary": "#f46ed5",
|
|
|
|
|
|
|
|
"secondary": "#6385ce",
|
|
|
|
|
|
|
|
"accent": "#289ab7",
|
|
|
|
|
|
|
|
"neutral": "#17161d",
|
|
|
|
|
|
|
|
"base-100": "#38373e",
|
|
|
|
|
|
|
|
"info": "#6aa4f6",
|
|
|
|
|
|
|
|
"success": "#6fe7b9",
|
|
|
|
|
|
|
|
"warning": "#d37d0d",
|
|
|
|
|
|
|
|
"error": "#f4736c",
|
|
}
|
|
}]
|
|
},
|
|
plugins: [daisyui],
|
|
}
|
|
|