-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
134 lines (122 loc) · 2.5 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
130
131
132
133
134
/** @format */
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
montserrat: ["Montserrat"],
poppins: ["Poppins"],
},
screens: {
sm: "300px",
// => @media (min-width: 640px) { ... }
md: "720px",
// => @media (min-width: 768px) { ... }
lg: "960px",
// => @media (min-width: 1024px) { ... }
xl: "1140px",
// => @media (min-width: 1280px) { ... }
"2xl": "1320px",
// => @media (min-width: 1536px) { ... }
},
container: {
center: true,
},
spacing: {
0: "0px",
1: "4px",
2: "8px",
3: "12px",
4: "16px",
5: "20px",
6: "24px",
7: "28px",
8: "32px",
9: "36px",
10: "40px",
11: "44px",
12: "48px",
13: "52px",
14: "56px",
15: "60px",
16: "64px",
17: "68px",
18: "72px",
19: "76px",
20: "80px",
21: "84px",
22: "88px",
23: "92px",
24: "96px",
25: "100px",
110: "110px",
120: "120px",
130: "130px",
140: "140px",
150: "150px",
160: "160px",
170: "170px",
180: "180px",
190: "190px",
200: "200px",
260: "260px",
},
extend: {
colors: {
white: "#ffffff",
darkblack: "#000000",
gray: "#FBFBFF",
yellow: "#FDD446",
"theme-color": "#00FF00",
"border-color": "#E8E8E8",
"body-color": "#747E88",
"heading-color": "#162447",
shadow: "#142325",
sorrel: "#793CD8",
blue: {
...colors.blue,
},
purple: {
...colors.purple,
},
cyan: {
...colors.cyan,
},
black: {
...colors.black,
},
green: colors.green,
pink: colors.pink,
linkcolor: "#dcdada",
},
zIndex: {
"-10": "-10",
"-20": "-20",
"-30": "-30",
"-40": "-40",
},
transitionDelay: {
400: "400ms",
600: "600ms",
},
},
backgroundImage: {
bimage: "url('/src/images/bimage.jpg')",
},
fontSize: {
xxs: "0.5rem",
sm: "0.8rem",
base: "1rem",
xl: "1.25rem",
"2xl": "1.563rem",
"3xl": "1.953rem",
"4xl": "2.441rem",
"5xl": "3.052rem",
},
},
variants: {
extend: {},
},
plugins: [],
};