-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
60 lines (59 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import type { Config } from "tailwindcss";
export default {
content: [
"./src/**/*.{html,js,jsx,ts,tsx}",
"!./src/components/puck/registry/**", // exclude the registry
],
prefix: "ve-",
theme: {
extend: {
colors: {
text: "black",
border: "hsl(240 28% 92%)",
input: "hsl(214.3 31.8% 91.4)",
ring: "hsl(215 20.2% 65.1%)",
background: "hsl(0 0% 100)",
foreground: "hsl(222.2 47.4% 11.2)",
primary: {
DEFAULT: "hsl(241 86% 65)",
foreground: "hsl(0 0% 100%)",
},
secondary: {
DEFAULT: "hsl(257 51% 90)",
foreground: "hsl(0 0% 0%)",
},
destructive: {
DEFAULT: "hsl(0 100% 50%)",
foreground: "hsl(0 0% 0%)",
},
muted: {
DEFAULT: "hsl(210 40% 96.1%)",
foreground: "hsl(215.4 16.3% 46.9%)",
},
accent: {
DEFAULT: "hsl(210 40% 96.1%)",
foreground: "hsl(222.2 47.4% 11.2%)",
},
popover: {
DEFAULT: "hsl(225 7% 12%)",
foreground: "hsl(0 0% 100%)",
},
},
borderRadius: {
lg: `2rem`,
md: `calc(2rem - 2px)`,
sm: "calc(2rem - 4px)",
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
lg: "4rem",
xl: "5rem",
},
},
},
},
plugins: [],
} satisfies Config;