forked from etifontaine/bonout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module.exports = {
content: [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.jsx",
"src/**/*.tsx",
"components/**/*.jsx",
"components/**/*.tsx",
"pages/**/*.jsx",
"pages/**/*.tsx",
],
theme: {
fontFamily: {
"pt-serif": ["PT Serif", "serif"],
montserrat: ["Montserrat", "sans-serif"],
},
backgroundSize: {
auto: "auto",
cover: "cover",
contain: "contain",
"100%": "100%",
},
extend: {
colors: {
secondary: "#F4F2ED",
black: "black",
white: "white",
},
backgroundImage: {
underline1: "url('/images/Underline1.svg')",
underline2: "url('/images/Underline2.svg')",
underline3: "url('/images/Underline3.svg')",
underline4: "url('/images/Underline4.svg')",
highlight3: "url('/images/Highlight3.svg')",
},
keyframes: {
"fade-in-down": {
"0%": {
opacity: "0",
transform: "translateY(-10px)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
animation: {
"fade-in-down": "fade-in-down 0.5s ease-out",
},
},
},
};