-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
113 lines (113 loc) · 2.16 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
xs: "460px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
extend: {
fontFamily: {
inter: ["var(--font-inter)"],
},
scale: {
icon: 1.25,
active: 0.95,
},
minWidth: {
block: "800px",
},
maxWidth: {
block: "800px",
content: "1140px",
logo: "168px",
},
maxHeight: {
logo: "25px",
},
borderRadius: {
DEFAULT: "4px",
},
fontSize: {
xs: [
"12px",
{
letterSpacing: "-.0125em",
lineHeight: "15px",
fontWeight: "400",
},
],
sm: [
"14px",
{
letterSpacing: "-.0125em",
lineHeight: "160%",
fontWeight: "400",
},
],
md: [
"16px",
{
letterSpacing: "-.0125em",
lineHeight: "140%",
fontWeight: "400",
},
],
lg: [
"40px",
{
letterSpacing: "-.05em",
lineHeight: "100%",
fontWeight: "600",
},
],
xl: [
"48px",
{
letterSpacing: "-.05em",
lineHeight: "100%",
fontWeight: "600",
},
],
},
colors: {
dark: {
focus: "#4F7AE7",
red: "#E75B4F",
shade: {
1: "#F2F2F2",
2: "#B0B0B0",
3: "#383838",
4: "#222222",
5: "#151515",
},
},
light: {
red: "#D62617",
focus: "#177AD6",
shade: {
1: "#151515",
2: "#515151",
3: "#D1D1D1",
4: "#EEEEEE",
5: "#FFFFFF",
},
},
},
spacing: {
icon: "1em",
xl: "100px",
lg: "40px",
md: "24px",
sm: "16px",
xs: "8px",
},
},
},
plugins: [],
};