39 lines
834 B
JavaScript
39 lines
834 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./templates/**/*.{html,htm}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#ec4899',
|
|
secondary: '#c4b5fd',
|
|
accent: '#ede9fe',
|
|
neutral: '#0e7490',
|
|
'base-100': '#fff5f1',
|
|
info: '#38bdf8',
|
|
success: '#6ee7b7',
|
|
warning: '#fbbf24',
|
|
error: '#ef4444',
|
|
},
|
|
},
|
|
},
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
mytheme: {
|
|
"primary": "#ec4899",
|
|
"secondary": "#c4b5fd",
|
|
"accent": "#ede9fe",
|
|
"neutral": "#0e7490",
|
|
"base-100": "#fff5f1",
|
|
"info": "#38bdf8",
|
|
"success": "#6ee7b7",
|
|
"warning": "#fbbf24",
|
|
"error": "#ef4444",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
require('daisyui'),
|
|
],
|
|
} |