generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
61 lines (56 loc) · 1.88 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"primary-color": "#F1EBE5",
"primary-white": "#FFFFFF",
"primary-dark": "#334566",
"secondary-color": "#445C88",
"secondary-dark": "#817986",
"brand-red": "#E66F74",
"brand-light-green": "#01A391",
"brand-green": "#018475",
},
backgroundImage: {
"main-page": 'url("/src/img/main-section-bg.jpg")',
"input-page": 'url("/src/img/input-section-bg.png")',
"result-page": 'url("/src/img/results-section-bg.png")',
"custom-gradient":
"linear-gradient(to right, #8E216E 0%, #E66F74 20%, #EBC0C1 38%, #ffffff 50%, #ffffff 100%)",
"custom-mobile-gradient":
"linear-gradient(to bottom, #ffffffb0 0%, #EBC0C1 10%, #E66F74 20%, #8E216E 35%, #8E216E 40%, #ffffffe5 58%, #ffffff00 100%)",
},
fontFamily: {
display: "OpenSans-Regular, Arial, Helvetica, sans-serif",
caption: "IslandMoments",
},
dropShadow: {
link: "0 0 10px rgba(230, 111, 116, 0.5)",
title: "-2px 1px 2px rgba(255, 255, 255, 1)",
icon: "0 0 6px #EBC0C1",
},
boxShadow: {
shape: "0 0 6px #EBC0C1",
},
keyframes: {
arrowRotate: {
"0%": { transform: "rotate(0deg)" },
"30%": { transform: "rotate(-15deg)" },
"60%": { transform: "rotate(50deg)" },
"100%": { transform: "rotate(0deg)" },
},
slideIn: {
"0%": { transform: "translateX(50%)", opacity: 0 },
"100%": { transform: "translateX(0)", opacity: 1 },
},
},
animation: {
arrowRotate: "arrowRotate 1.5s ease-in-out 1" /*infinite*/,
slideIn: "slideIn 0.5s ease-out",
},
},
},
plugins: [],
};