-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
101 lines (98 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import type { Config } from "tailwindcss"
const config = {
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
typography: (_theme: unknown) => ({
DEFAULT: {
css: {
color: "",
h1: {
color: "",
},
h2: {
color: "",
},
h3: {
color: "",
},
h4: {
color: "",
},
h5: {
color: "",
},
h6: {
color: "",
},
strong: {
color: "",
},
},
},
}),
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
colors: {
primary: {
50: "#eef3ff",
100: "#dee2f2",
200: "#bdc2de",
300: "#98a0ca",
400: "#7a84ba",
500: "#6672b0",
600: "#5c68ac",
700: "#4c5897",
800: "#424e88",
900: "#364379",
},
theme: {
primary: "#5c68ac", // primary-600
secondary: "#BFB173", // light-amber
accent: "#BFAA40", // amber
base: "#424e88", // slate-800
light: "#4c5897", // primary-700
dark: "#364379", // primary-900
destructive: "hsl(10, 80%, 40%)",
success: "#48bb78",
}
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [
require("tailwind-custom-utilities"),
require("@tailwindcss/typography"),
require("tailwindcss-animate")],
corePlugins: {
preflight: false,
},
} satisfies Config
export default config