-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
39 lines (39 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
dropShadow: {
'3xl': '20px 17px 1px rgba(0,111,164,1)',
'4xl': [
'0 17px 1px rgba(0,111,164,1)',
'1 17px 1px rgba(0,111,164,1)'
]
},
boxShadow: {
'5xl': '8px 9px 0px #000000;',
},
textShadow: {
'main': '-1px 1px 0 rgba(255, 255, 255, 1),1px 1px 0 rgba(255, 255, 255, 1),1px -1px 0 rgba(255, 255, 255, 1),-1px -1px 0 rgba(255, 255, 255, 1);',
'main1': '-1px 1px 0 rgba(255, 255, 255, 0.1),1px 1px 0 rgba(255, 255, 255, 0.1),1px -1px 0 rgba(255, 255, 255, 0.1),-1px -1px 0 rgba(255, 255, 255, 0.1);',
'2xl': '1px 1px 5px rgb(33 34 43 / 20%)',
'3xl': '0 0 3px rgba(0, 0, 0, .8), 0 0 5px rgba(0, 0, 0, .9)',
},
screens: {
'mdlg1': {'min': '425px', 'max': '590px'},
'mdlg2': {'min': '590px', 'max': '686px'},
'mdlg3': {'min': '686px', 'max': '767px'},
'3xl': '2000px'
},
borderRadius: {
'4xl': '32px',
}
},
},
plugins: [
require('tailwindcss-textshadow'),
require('@tailwindcss/line-clamp')
],
}