-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
32 lines (32 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
loading: "url(/src/assets/images/letter-background.webp)",
"menu-animated":
"url(/src/assets/images/hogwarts-express-animated.webp)",
"menu-firt-frame":
"url(/src/assets/images/hogwarts-express-first-frame.webp)",
game: "url(/src/assets/images/hogwarts-background.webp)",
victory: "url(/src/assets/images/hogwarts-victory-background.webp)",
defeat: "url(/src/assets/images/hogwarts-defeat-background.webp)",
},
fontFamily: {
oswald: "Oswald, sans-serif",
roboto: "Roboto, sans-serif",
},
keyframes: {
"fade-in": {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
animation: {
"fade-in": "fade-in 1.5s ease-in forwards",
},
},
},
plugins: [require("tailwindcss-3d")({ legacy: true })],
};