-
Notifications
You must be signed in to change notification settings - Fork 14
/
tailwind.config.js
57 lines (57 loc) · 1.33 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
module.exports = {
mode: "jit",
purge: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
maxHeight: {
"60vh": "60vh",
},
extend: {
fontSize: {
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
"2.25xl": "2rem",
"4xl": "2.25rem",
"5xl": "3rem",
"6xl": "4rem",
"7xl": "5rem",
},
backgroundImage: {
"arrow-left": "url('/src/assets/arrow_left.svg')",
"arrow-right": "url('/src/assets/arrow_right.svg')",
},
gridTemplateColumns: {
documentation: "220px 1fr",
},
colors: {
white: "#ffffff",
"white-gray": "#c2c2c2",
"light-gray": "#a9a9a9",
"superlight-gray": "#f0f1f3a3",
gray: "#252525",
"dark-gray": "#323738",
"light-blue": "#85acb0",
"gray-blue": "#272f2f",
"light-green": "#9ed178",
"dark-gray-1": "#1b1c1c",
"dark-100": "#0e0e0e",
"gray-rgba": "rgba(37, 37, 37, 0.72)",
"gray-darkest": "#333333",
},
spacing: {
"5%": "5%",
},
screens: {
mobile: { max: "992px" },
desktop: "992px",
xl: "1334px",
},
},
},
variants: {
extend: {},
},
plugins: [],
};