forked from vacp2p/vac.dev-experimental-old
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
64 lines (64 loc) · 1.31 KB
/
Copy pathtailwind.config.js
File metadata and controls
64 lines (64 loc) · 1.31 KB
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
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: {
280: '280px',
436: '436px',
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: {
sans: ['Open Sans', 'sans-serif'],
},
fontSize: {
xxs: ['10px', '22px'],
xs: ['12px', '16px'],
s: ['12px', '20px'],
sm: ['14px', '22px'],
base: ['14px', '24px'],
l: ['18px', '25px'],
lg: ['20px', '28px'],
xl: ['24px', '32px'],
xxl: ['32px', '44px'],
},
textColor: {
white: '#fff',
black: '#151512',
peach: '#D1A69D',
},
colors: {
white: '#fff',
black: '#151512',
peach: '#D1A69D',
},
},
variants: {},
plugins: [],
};