forked from amir20/dozzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
33 lines (32 loc) · 1.07 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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) / <alpha-value>)",
"base-darker": "oklch(var(--base-darker-color) / <alpha-value>)",
"base-lighter": "oklch(var(--base-lighter-color) / <alpha-value>)",
"base-content": "oklch(var(--base-content-color) / <alpha-value>)",
primary: "oklch(var(--primary-color) / <alpha-value>)",
secondary: "oklch(var(--secondary-color) / <alpha-value>)",
},
},
},
plugins: [DaisyUI, Typography],
daisyui: {
themes: [],
base: false,
logs: false,
},
} satisfies Config;