-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (66 loc) · 1.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
hero: "url('/assets/hero.jpg')",
hero2: "url('/assets/hero2.jpg')",
hero3: "url('/assets/hero3.jpg')",
},
colors: {
primary: "#025464",
secondary: "#E57C23",
highlights: "#E8AA42",
myWhite: "#F8F1F1",
},
animation: {
"bounce-slow": "bounce 5s linear infinite",
"slide-in-left": "slideInLeft 1s linear",
"slide-in-right": "slideInRight 1s linear",
"slide-in-top": "slideInTop 1s linear",
"rocket-out": "slideOut 1s ease-in forwards",
},
keyframes: {
slideInLeft: {
"0%": {
transform: "translateX(-100px)",
},
"100%": {
transform: "translateX(0)",
},
},
slideInRight: {
"0%": {
transform: "translateX(100px)",
},
"100%": {
transform: "translateX(0)",
},
},
slideInTop: {
"0%": {
transform: "translateY(0)",
},
"100%": {
transform: "translateY(20px)",
},
},
slideOut: {
"0%": {
transform: "translateY(0)",
},
"100%": {
transform: "translateY(-1800px)",
opacity: "0%"
},
},
},
},
},
plugins: [],
};