-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 959 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
backgroundImage: {
banner: "url(/src/assets/banner.jpg)",
},
colors: {
primary: "#F4A460",
secondary: "#F1823B",
custom_bk: "#333",
},
keyframes: {
slide_down: {
"0%": {
opacity: 0,
transform: "translate(-50%, -3rem)",
},
"100%": {
opacity: 1,
transform: "translate(-50%, 0)",
},
},
rotate: {
"0%": {
transform: "rotate(0deg)",
},
"100%": {
transform: "rotate(360deg)",
},
},
},
animation: {
slide_down: "slide_down 400ms ease-out forwards",
rotate: "rotate 10s linear infinite",
},
},
},
plugins: [],
};