41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
// based on daisyUI night and winter themes
|
|
themes: [
|
|
{
|
|
chessuLight: {
|
|
primary: "#047AFF",
|
|
secondary: "#6370d6",
|
|
accent: "#C148AC",
|
|
neutral: "#9ab3d9",
|
|
"base-100": "#FFFFFF",
|
|
"base-200": "#F2F7FF",
|
|
"base-300": "#E3E9F4",
|
|
"base-content": "#394E6A",
|
|
info: "#93E7FB",
|
|
success: "#81CFD1",
|
|
warning: "#EFD7BB",
|
|
error: "#E58B8B"
|
|
},
|
|
chessuDark: {
|
|
primary: "#38BDF8",
|
|
secondary: "#818CF8",
|
|
accent: "#1d4ed8",
|
|
neutral: "#1E293B",
|
|
"base-100": "#0F172A",
|
|
info: "#0CA5E9",
|
|
success: "#2DD4BF",
|
|
warning: "#F4BF50",
|
|
error: "#FB7085"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
};
|