-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
48 lines (48 loc) · 1 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
module.exports = {
// @see https://tailwindcss.com/docs/upcoming-changes
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
content: [
'./src/components/**/*.js',
'./pages/**/*.js'],
theme: {
fontFamily: {
sans: [
'"Open Sans"',
'Arial',
'sans-serif',
'"Helvetica Neue"',
],
},
extend: {
height: {
'almost-screen': 'calc(-16rem + 100vh)',
'100px': '6.25rem',
'308px': '19.25rem',
'500px' : '31.25rem'
},
width: {
'100px': '6.25rem',
'308px': '19.25rem',
'600px': '37.5rem',
},
maxHeight: {
'500px' : '31.25rem'
},
colors: {
'gray-default': '#4a4e57',
'green-default': '#74975d',
'bg-green-default': '#65bc7b',
'green-500': '#97B584',
},
},
},
variants: {},
plugins: [
require( 'tailwindcss' ),
require( 'precss' ),
require( 'autoprefixer' )
]
}