-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.js
59 lines (59 loc) · 1.26 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
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
extend: {
fontFamily: {
sans: ["Quicksand", "Helvetica", "Arial", "sans-serif"],
display: ["Lilita One", "Arial", "Helvetica"]
},
fontSize: {
"65-xxl": "65%",
"7/2": "3.5rem"
},
inset: {
"0": 0,
"2": "2%",
"5": "5%",
"12": "12%",
"13": "13%",
"14": "14%",
"15": "15%",
"22": "22%",
"40": "40%",
"50": "50%",
"52": "52.2%",
"47": "calc(47vh - 16.8rem / 2)",
"18": "calc(18vh - 16.8rem / 2)",
"60": "60%",
"65": "65%",
"90": "90%",
"-100": "-100%"
},
opacity: {
"10": ".1"
},
stroke: theme => ({
white: "#FFF"
}),
spacing: {
"150": "150rem",
"250": "250rem",
"9/2": "4.5vh",
"13/2": "6.5vh",
"15/2": "7.5vh",
"screen-65": "65vh",
"30": "30rem",
"50": "50%",
"85": "85%",
"90": "90%"
}
}
},
variants: {},
plugins: []
};