-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (43 loc) · 913 Bytes
/
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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
width: {
1600: '1600px',
400: '400px',
450: '450px',
210: '210px',
550: '550px',
260: '260px',
650: '650px',
},
height: {
600: '600px',
280: '280px',
900: '900px',
458: '458px',
},
top: {
' 50%': '50%',
},
backgroundColor: {
primary: '#F1F1F2',
blur: '#030303',
},
colors: {
primary: 'rgb(22, 24, 35)',
},
height: {
'88vh': '88vh',
},
backgroundImage: {
'blurred-img':
"url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSsaaJ7s4lqcBF4IDROVPzrlL5fexcwRmDlnuEYQenWTt1DejFY5kmYDref2a0Hp2eE4aw&usqp=CAU')",
},
},
},
plugins: [],
};