import type { Config } from "tailwindcss"; import DaisyUI from "daisyui"; import Typography from "@tailwindcss/typography"; export default { content: ["./assets/**/*.{vue,js,ts}", "./public/index.html"], theme: { extend: { animation: { "bounce-fast": "bounce 0.5s 2 both", }, colors: { green: "oklch(69% 0.119722 188.479048)", red: "oklch(64% 0.218 28.85)", purple: "oklch(51.49% 0.215 321.03)", blue: "oklch(65% 0.171 249.5)", orange: "oklch(70% 0.186 48.13)", base: "oklch(var(--base-color) / )", "base-darker": "oklch(var(--base-darker-color) / )", "base-lighter": "oklch(var(--base-lighter-color) / )", "base-content": "oklch(var(--base-content-color) / )", primary: "oklch(var(--primary-color) / )", secondary: "oklch(var(--secondary-color) / )", }, }, }, plugins: [DaisyUI, Typography], daisyui: { themes: [], base: false, logs: false, }, } satisfies Config;