forked from vacp2p/vac.dev
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
68 lines (68 loc) · 1.42 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
module.exports = {
mode: "jit",
purge: [`_site/**/*.html`, `_site/**/*.css`],
theme: {
extend: {
backgroundImage: theme => ({
arrow: "url(/assets/img/arrow.svg)",
arrowWhite: "url(/assets/img/arrow-white.svg)",
arrowPeach: "url(/assets/img/arrow-peach.svg)",
}),
maxWidth: {
210: "210px",
280: "280px",
436: "436px",
680: "680px",
48: "48%",
80: "80%",
},
maxHeight: {
280: "280px",
436: "436px",
nav: "350px",
},
},
screens: {
xxs: "370px",
xscard: "436px",
xs: "450px",
xm: "480px",
sm: "570px",
sl: "680px",
md: "768px",
ml: "900px",
lg: "1024px",
l: "1199px",
lm: "1280px",
xl: "1440px",
},
fontFamily: {
body: ["Open Sans", "sans-serif"],
code: ["Anonymous Pro", "monospace"],
},
fontSize: {
xxs: ["10px", "22px"],
xs: ["12px", "16px"],
s: ["12px", "20px"],
sm: ["14px", "22px"],
base: ["16px", "29px"],
l: ["18px", "25px"],
lg: ["20px", "28px"],
h: ["22px", "22px"],
xl: ["24px", "32px"],
xxl: ["32px", "44px"],
},
textColor: {
white: "#fff",
black: "#151512",
peach: "#D1A69D",
},
colors: {
white: "#fff",
black: "#151512",
peach: "#D1A69D",
},
},
variants: {},
plugins: [],
};