-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
150 lines (150 loc) · 3.76 KB
/
tailwind.config.js
File metadata and controls
150 lines (150 loc) · 3.76 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
aspectRatio: {
auto: "auto",
square: "1 / 1",
overTwo: "2/1",
video: "16 / 9",
height: "1/2",
},
colors: {
bgColors: "#252525",
btn: "#252525",
primary: {
100: "#3c009d",
200: "#797979",
300: "#eaeaea",
400: "#4c00b4",
500: "#676767",
},
secondary: {
100: "#808285",
200: "#27323F",
300: "#48515b",
400: "#9CA7AB",
500: "#666666",
},
button: {
100: "#27323f",
},
},
fontFamily: {
inter: ["Inter", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
space: ({ theme }) => ({
...theme("spacing"),
}),
spacing: {
half: "30%",
thrice: "75%",
quater: "90%",
55: "55%",
45: "45%",
extraLgW: "550px",
extraLgH: "300px",
120: "42rem",
18: "4.5rem",
13: "3.25rem",
5: "1.15rem",
8: "2.2rem",
22: "5.5rem",
50: "12.5rem",
68: "16.59rem",
74: "17.25rem",
76: "18.5rem",
78: "19rem",
82: "20.5rem",
84: "21.5rem",
90: "22.2rem",
92: "23.2rem",
94: "23.6rem",
97: "24rem",
98: "25.5625rem",
100: "30rem",
"-1": "-1rem",
"-1.5": "-1.5rem",
"-2": "-2rem",
},
fontSize: {
"4.5xl": ["2.32rem", { lineHeight: "3rem" }],
"2.5xl": ["1.7rem", { lineHeight: "2.5rem" }],
},
minHeight: {
px: "1px",
0: "0px",
0.5: "0.125rem",
1: "0.25rem",
1.5: "0.375rem",
2: "0.5rem",
2.5: "0.625rem",
3: "0.75rem",
3.5: "0.875rem",
4: "1rem",
5: "1.25rem",
6: "1.5rem",
7: "1.75rem",
8: "2rem",
9: "2.25rem",
10: "2.5rem",
11: "2.75rem",
12: "3rem",
14: "3.5rem",
16: "4rem",
20: "5rem",
24: "6rem",
28: "7rem",
32: "8rem",
36: "9rem",
40: "10rem",
44: "11rem",
48: "12rem",
52: "13rem",
56: "14rem",
60: "15rem",
64: "16rem",
72: "18rem",
80: "20rem",
96: "24rem",
18: "4.5rem",
13: "3.25rem",
8: "2.2rem",
22: "5.5rem",
74: "17.25rem",
76: "18.5rem",
78: "19rem",
82: "20.5rem",
84: "21.5rem",
90: "22.2rem",
92: "23.2rem",
94: "23.6rem",
98: "25.5625rem",
100: "30rem",
},
dropShadow: {
sm: "0 1px 1px rgb(0 0 0 / 0.05)",
DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
"2xl": "0 25px 25px rgb(0 0 0 / 0.43)",
none: "0 0 #0000",
},
boxShadow: {
sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
DEFAULT:
"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
"2xl": "0 15px 25px rgb(0 0 0 / 0.78)",
inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
none: "none",
},
},
},
plugins: [],
};