FrostByte/client-solid/tailwind.config.js
2023-11-22 15:31:58 +01:00

27 lines
583 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")],
};