-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 loc) · 966 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
42
43
44
45
const colors = require('tailwindcss/colors');
module.exports = {
purge: ['./src/**/*.{js, jsx, ts, tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
transparent: 'transparent',
trueGray: colors.trueGray,
lime: colors.lime,
lightblue: colors.lightBlue,
uber: {
light: '#DFF0D8',
DEFAULT: '#5fb70a',
dark: '#3e981f',
},
},
zIndex: {
'-1': '-1',
},
screens: {
sm: { min: '320px', max: '767px' },
md: { min: '768px', max: '1023px' },
},
maxHeight: {
0: '0',
'1/4': '25%',
'1/2': '50%',
'1/3': '60%',
'2/4': '80%',
},
minHeight: {
0: '0',
sm: '320px',
md: '550px',
lg: '740px',
},
},
},
variants: {
borderColor: ['responsive', 'hover', 'focus', 'focus-within'],
},
plugins: [],
};