forked from poulainv/tottem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 1.15 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
module.exports = {
important: true,
theme: {
extend: {
maxWidth: {
xxs: '10rem',
},
spacing: {
full: '100%',
'4/3': '133%',
'3/2': '150%',
},
inset: {
'-4': '-3rem',
},
minHeight: {
'8': '8em',
'9': '9em',
'10': '10em',
},
colors: {
brand: {
50: '#eef5f3',
100: '#d4e6e1',
200: '#b7d5ce',
300: '#9ac4ba',
400: '#85b7ab',
500: '#6faa9c',
600: '#67a394',
700: '#5c998a',
800: '#529080',
900: '#407f6e',
},
},
},
},
variants: {
display: ['responsive'],
flex: ['responsive'],
flexDirection: ['responsive'],
visibility: ['group-hover', 'responsive'],
margin: ['responsive', 'first', 'hover', 'focus'],
},
plugins: [],
}