-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.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
module.exports = {
theme: {
fontSize: {
"header-xs": "3.5vmin",
"header-sm": "4vmin",
"header-md": "5vmin",
"header-lg": "11vmin",
"section-header": "7vmin",
"section-detail": "3.5vmin",
"md/header-xs": "1.25vw",
"md/header-sm": "2.5vw",
"md/header-md": "3vw",
"md/header-lg": "4.5vw",
"md/section-header": "3.5vw",
"md/section-detail": "1.75vw",
},
extend: {
colors: {
beige: "#f5f5ef",
tan: "#cfb396",
adobe: "#e05a47",
aqua: "#00c4cc",
sunshine: "#ffb331",
},
fontFamily: {
"league-spartan": ["League Spartan", "sans-serif"],
"open-sans": ["Open Sans", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
nunito: ["Nunito", "sans-serif"],
},
spacing: {
"md/sm": "1.25vw",
"md/base": "1.75vw",
"md/md": "2vw",
"md/outer": "3vw",
sm: "2.5vmin",
base: "3.5vmin",
md: "4vmin",
outer: "6vmin",
},
lineHeight: {
bound: "1.125",
},
padding: { "1/3": "33.333333%" },
},
},
variants: {},
plugins: [],
};