-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
Black: '#101010',
DarkBlue: '#2A2C41',
DarkerBlue: '#000014',
Yellow: '#FDBF50',
Beige: '#D4CDCD',
Beige2: '#BEB6A8',
Beige3: '#A2947A',
DarkBeige: '#ACA08C',
White: '#F4F4F8',
'white-18': 'rgba(255, 255, 255, 0.18)',
},
backdropFilter: {
'blur-2': 'blur(2px)',
},
boxShadow: {
custom: '0 8px 32px 0 rgba(31, 38, 135, 0.37)',
},
screens: {
'lg1': '1523px',
'lg': '1280px',
'lg2': '1200px',
'md1': '900px',
'md2': '700px',
'md3': '560px',
'sm2': '500px',
'sm3': '400px',
'xs': '450px',
'xl': '1200px',
'xl2': '1600px',
},
maxWidth: {
'10ch': '10ch',
'144ch': '144ch'
}
},
},
plugins: [],
}