forked from eisenivan/league.beegame.gg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (51 loc) · 1.08 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
'head': '"Open Sans Condensed"',
'subhead': '"Open Sans"',
'body': '"Montserrat"'
},
boxShadow: {
match: 'inset 0 0 40px 0 rgba(0, 0, 0, 0.7)'
},
extend: {
backgroundImage: theme => ({
'triangle_bg_dark': "url('/src/img/triangle_bg_dark.png')",
'triangle_bg_light': "url('/src/img/triangle_bg_light.png')"
}),
gridTemplateColumns: {
'content': '2fr 1fr'
},
colors: {
blue: {
1: '#3399ff',
2: '#0047ff',
3: '#2d3cb3',
4: '#7589d5'
},
yellow: {
1: '#ffcc66',
2: '#fdb833',
3: '#b37b2d'
},
gray: {
1: '#f0f0f0',
2: '#252827',
3: '#080808'
}
},
fontSize: {
'2xs': '.65rem'
},
spacing: {
'112': '28rem'
}
}
},
variants: {
extend: {}
},
plugins: []
}