-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
38 lines (38 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,css}', './*.html'],
theme: {
screens: {
sm : '375px',
md : '768px',
lg : '976px',
xl : '1440px',
},
fontFamily: {
BeVietnamPro: 'Be Vietnam Pro',
},
extend: {
colors: {
brightRed : '#f25f3a',
brightRedLight : '#f6866a',
brightRedSuperLight : '#fdece7',
darkBlue : '#242d52',
darkGrayishBlue : '#9095a7',
veryDarkBlue : '#1d1e25',
veryPaleRed : '#ffefeb',
veryLightGray : '#fafafa',
},
dropShadow: {
'4xl' : '0 8px 5px rgb(242 95 58 / 0.35)',
},
fontFamily: {
BeVietnamPro: "'Be Vietnam Pro', sans-serif",
},
height: {
250 : '250px',
275 : '275px',
}
}
},
plugins: [],
}