-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.06 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 = {
purge: {
enabled: true,
content: ['./src/**/*.tsx'],
},
theme: {
extend: {
colors: {
darkBlue: '#1E3273',
blue: '#4488C1',
grey: '#636474',
neutral: '#2D2F4490',
mild: '#C4C4C4',
black: '#14162E',
overlay: '#22222225',
white: '#FFFFFF',
transparent: 'transparent'
},
fontFamily: {
primary: ['Poppins', 'sans-serif']
},
boxShadow: {
normal: '1px 3px 10px rgba(0, 0, 0, 0.10)',
medium: '1px 3px 10px rgba(0, 0, 0, 0.25)',
heavy: '1px 3px 5px rgba(0, 0, 0, 0.27)',
hover: '3px 3px 6px rgba(34, 34, 34, 0.25)',
select: '0px 1px 6px rgba(48, 127, 226, 0.18)'
},
screens: {
mini: '0px',
phone: '360px',
tablet: '768px',
'small-desktop': '1200px',
desktop: '1650px',
},
zIndex: {
100: 100
},
inset: {
'1/2': '50%',
'3/4': '75%'
}
}
},
plugins: [
require('@tailwindcss/line-clamp'),
]
};