forked from meetupjs-ar/meetupjs-ar.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 862 Bytes
/
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
module.exports = {
theme: {
extend: {
backgroundColor: theme => ({
'near-white': '#f4f4f4',
overlay: 'rgba(0, 0, 0, 0.7)',
'secondary-light': theme('colors')['secondary-light'],
'washed-green': '#e8fdf5'
}),
borderColor: {
'black-10': 'rgba(0, 0, 0, 0.1)'
},
colors: {
'dark-green': '#137752',
primary: '#2e282a',
quaternary: '#6a5359',
secondary: '#ffe45e',
'secondary-light': '#fffceb',
success: '#98d083',
tertiary: '#fffceb'
},
height: {
'50-px': '50px'
},
maxHeight: {
'75-vh': '75vh'
},
maxWidth: {
'7xl': '96rem'
},
padding: {
'68-px': '68px'
},
width: {
'50-px': '50px'
}
}
},
variants: {},
plugins: []
};