-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
63 lines (63 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
darkMode: "class",
content: ["./**/*.tsx", "./*.tsx"],
plugins: [],
theme: {
extend: {
height: {
16: "16px",
21: "21px",
30: "30px",
50: "50px",
77: "77px",
88: "86px",
92: "94px",
120: "120px",
400: "400px",
500: "527px",
},
width: {
16: "16px",
21: "21px",
30: "30px",
50: "50px",
77: "77px",
88: "86px",
92: "94px",
300: "300px",
350: "350px",
400: "400px",
},
fontSize: {
xs: ".7rem",
sm: ".8rem",
md: ".9rem",
lg: "1rem",
xl: "1.2rem",
},
borderRadius: {
md: "3px",
lg: "8px",
xl: "12px",
_2xl: "25%",
},
colors: {
"pink-main": "#F94C84",
"purple-main": "#D25EA9",
"gold-500": "#FFC138",
"gold-300": "#FFC741",
"black-100": "#727272",
"black-200": "#666666",
"black-300": "#535353",
"black-400": "#404040",
"black-500": "#2B2B2B",
"black-600": "#181818",
"black-700": "#0F0F0F",
"black-800": "#080808",
"black-900": "#000000"
},
},
},
};