import type { Config } from "tailwindcss"; import DaisyUI from "daisyui"; export default { content: ["./assets/**/*.{vue,js,ts}", "./public/index.html"], theme: { extend: { animation: { "bounce-fast": "bounce 0.5s 2 both", }, colors: { green: "hsl(177 100% 35%)", red: "hsl(4 90% 58%)", purple: "hsl(291 64% 42%)", blue: "hsl(207 90% 54%)", orange: "hsl(25 95% 53%)", base: "hsl(var(--base-color) / )", "base-darker": "hsl(var(--base-darker-color) / )", "base-lighter": "hsl(var(--base-lighter-color) / )", "base-content": "hsl(var(--base-content-color) / )", primary: "hsl(var(--primary-color) / )", "primary-focus": "hsl(var(--primary-focus-color) / )", secondary: "hsl(var(--secondary-color) / )", "secondary-focus": "hsl(var(--secondary-focus-color) / )", }, }, }, plugins: [DaisyUI], daisyui: { themes: [], base: false, logs: false, }, } satisfies Config;