-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
101 lines (97 loc) · 1.94 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
module.exports = {
theme: {
extend: {
colors: {
night: {
default: "#11112F",
light: "#161638"
},
camel: {
default: "#F67242",
light: "#FFA180"
},
stone: "#6A6B6F",
ghost: {
default: "#F9FAF9",
light: "#80818B",
'44': "rgba(249, 250, 249, 0.44)"
},
platinum: {
default: "#BFC6CE"
},
bronze: {
default: "#D66942"
}
},
minWidth: {
mobile: "20rem"
},
minHeight: {
"3/4": "75%",
"24": "24rem"
},
height: {
"half": "50vh",
},
},
/* Most of the time we customize the font-sizes,
so we added the Tailwind default values here for
convenience */
fontSize: {
'14': "0.875rem",
'16': "1rem",
'18': "1.125rem",
'21': "1.3125rem",
'24': "1.5rem",
'34': "2.125rem",
'26': "1.625rem",
'50': "3.125rem",
'60': "3.75rem",
'72': "4.5rem",
xs: ".75rem",
sm: ".875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
"4xl": "2.25rem",
"5xl": "3rem",
"6xl": "4rem"
},
/* We override the default font-families with our own default prefs */
fontFamily: {
sans: [
"Lato",
"-apple-system",
"BlinkMacSystemFont",
"Helvetica Neue",
"Arial",
"sans-serif"
],
serif: [
"Zilla Slab",
"Georgia",
"-apple-system",
"BlinkMacSystemFont",
"Helvetica Neue",
"Arial",
"sans-serif"
],
mono: [
"Menlo",
"Monaco",
"Consolas",
"Roboto Mono",
"SFMono-Regular",
"Segoe UI",
"Courier",
"monospace"
]
}
},
variants: {
width: ["responsive"]
},
plugins: []
};