-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
55 lines (54 loc) · 1.18 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
module.exports = {
theme: {
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1280px',
},
extend: {
colors: {
primary: '#C09558',
secondary: '#696E95',
tertiary: '#F8F3EE',
alt: {
1: '#262627',
2: '#DFE2E6',
3: '#FFFFFF',
},
},
maxWidth: theme => {
return {
'screen-xl': theme('screens.xl'),
screen: '100vw',
};
},
spacing: {
'44': '11rem',
'72': '18rem',
'80': '20rem',
'88': '22rem',
'100': '25rem',
'120': '30rem',
},
boxShadow: {
outline: '0 0 0 3px rgba(192, 149, 88, 0.5)',
'custom-light': '0px 1px 5px rgba(0, 0, 0, 0.1)',
custom: '0px 4px 16px rgba(0, 0, 0, 0.1)',
},
},
customForms: theme => ({
default: {
checkbox: {
borderRadius: theme('borderRadius.none'),
'&:focus': {
borderColor: theme('colors.primary'),
boxShadow: theme('boxShadow.outline'),
},
},
},
}),
},
variants: {},
plugins: [require('@tailwindcss/custom-forms')],
};