-
Notifications
You must be signed in to change notification settings - Fork 334
/
tailwind.config.ts
43 lines (42 loc) · 1.33 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
34
35
36
37
38
39
40
41
42
43
import type { Config } from "tailwindcss";
import DaisyUI from "daisyui";
import Typography from "@tailwindcss/typography";
import Container from "@tailwindcss/container-queries";
export default {
future: {
hoverOnlyWhenSupported: true,
},
content: ["./assets/**/*.{vue,js,ts}", "./public/index.html"],
theme: {
extend: {
blur: {
xs: "1px",
},
animation: {
"bounce-fast": "bounce 0.5s 2 both",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
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, Container],
daisyui: {
themes: [],
base: false,
logs: false,
},
} satisfies Config;