-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 967 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: {
height: {
"120": "32rem",
"140": "31rem",
"150": "35rem",
"200": "40rem",
},
width: {
"42": "11rem",
"120": "36rem",
"150": "35rem",
"200": "65rem",
},
backgroundImage: {
"marceau": "url('/public/marceau.jpg')",
"wysiaim": "url('/public/marceau.jpg')",
"pareditions": "url('/public/marceau.jpg')",
"hanabiores": "url('/public/hanabiores.jpg')",
"snmt": "url('/public/snmt.jpg')",
},
animation: {
'bounce-short': 'bounce 1s ease-in-out 1'
},
colors: {
"light-gray": "#4E5869",
},
gap: {
"26": "104px",
"42": "11rem",
"120": "36rem",
"150": "35rem",
"200": "65rem",
},
},
},
plugins: [],
}