-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
116 lines (116 loc) · 2.48 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
module.exports = {
content: ["./public/**/*.html", "./src/**/*.{js,jsx,ts,tsx}"],
theme: {
screens: {
xs: "360px",
sm: "576px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
primary: "#669FBA",
secondary: "#9CC2D3",
accent: "#ACBAC3",
slateDark: "#23272A",
slateLight: "#2C2F33",
light300: "#4D5F6A",
light200: "#ACBAC3",
light100: "#DCE1E5",
light000: "#F3F5F6",
blue200: "#669FBA",
blue100: "#9CC2D3",
blue000: "#E3EDF2",
red200: "#E56544",
red100: "#EB886F",
red000: "#FDF0ED",
green200: "#60AF7B",
green100: "#92C8A5",
green000: "#F1F8F4",
warning: "#FFD860",
danger: "#E56544",
dangerLight: "#FDF0ED",
success: "#60AF7B",
successLight: "#F1F8F4",
info: "#669FBA",
gray: "#8492a6",
white: "#fff",
black: "#212121",
transparentDark: "#23272A99",
transparentLight: "#DCE1E533",
transparent: "transparent",
transparentWhite: "#ffffff99",
},
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
mono: [
"ui - monospace",
"SFMono - Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
},
extend: {
inset: {
"50px": "50px",
},
spacing: {
128: "32rem",
144: "36rem",
},
outlineWidth: {
1: "1px",
},
borderWidth: {
1: "1.5px",
},
height: {
"custom-lg": "calc(100vh - 200px)",
"custom-xl": "calc(100vh - 135px)",
"custom-xxl": "calc(100vh - 64px)",
"fix-400": "400px",
},
width: {
"custom-m": "calc(100vw - 80px)",
"custom-l": "calc(100vw - 156px)",
330: "330px",
},
minHeight: {
16: "4rem",
18: "4.5rem",
20: "5rem",
28: "7rem",
32: "8rem",
96: "24rem",
"1/4": "25%",
"fix-400": "400px",
},
maxHeight: {
28: "7rem",
56: "14rem",
},
minWidth: {
32: "8rem",
36: "9rem",
44: "11rem",
72: "18rem",
96: "24rem",
},
maxWidth: {
36: "9rem",
56: "14rem",
72: "18rem",
},
zIndex: {
100: "100",
110: "110",
"z-over-draggable": 5001,
},
},
},
}