-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
129 lines (121 loc) · 2.73 KB
/
tailwind.config.js
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/** @type {import('tailwindcss').Config} */
export default {
purge: {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
safelist: [
"text-blue-500",
"text-green-500",
"text-red-500",
"text-yellow-500",
"text-purple-500",
"text-amber-500",
"text-pink-500",
"text-teal-500",
"text-indigo-500",
"text-gray-500",
"text-violet-500",
"text-lime-500",
"text-cyan-500",
"text-rose-500",
"text-emerald-500",
"border-blue-500",
"border-green-500",
"border-red-500",
"border-yellow-500",
"border-purple-500",
"border-amber-500",
"border-pink-500",
"border-teal-500",
"border-indigo-500",
"border-gray-500",
"border-violet-500",
"border-lime-500",
"border-cyan-500",
"border-rose-500",
"border-emerald-500",
"h-[152px]",
"h-[287px]",
"h-[438px]",
"h-[589px]",
"h-[740px]",
"h-[890px]",
"h-[100%]",
"min-h-[152px]",
"min-h-[287px]",
"min-h-[438px]",
"min-h-[589px]",
"min-h-[740px]",
"min-h-[890px]",
"min-h-[100%]",
"max-h-[152px]",
"max-h-[287px]",
"max-h-[438px]",
"max-h-[589px]",
"max-h-[740px]",
"max-h-[890px]",
"max-h-[100%]",
"text-rose-500 ",
"dark:text-rose-900",
// Add other color classes that you are using
],
},
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
// colors
// extend: {
// colors: {
// blue: {
// 50: "#576ECE",
// 100: "#7176B6",
// 200: "#8B7E9E",
// 300: "##A58786",
// 400: "#BF8F6D",
// 500: "#D99755",
// 600: "#F39F3D",
// },
// },
// },
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
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",
},
colors: {
pallette: {
50: "#d4c493",
100: "#f5ede0",
200: "#936965",
300: "#A58786",
400: "#9e8467",
500: "#63494c",
600: "#15232e",
},
},
},
},
plugins: [require("tailwindcss-animate")],
};