-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
87 lines (84 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.js", "./components/**/*.js"],
theme: {
extend: {
colors: {
"brand-orange": "#fb9129",
"brand-purple": "#6912aa",
"brand-gray": "#eeeeee",
"brand-black": "#1c1c1c",
"brand-navlink": "#262c55",
"brand-dark-purple": "#0a0e27",
"notification-red": "#ff0000",
"notification-green": "#29c57a",
"footer-border": "#c3c3c3",
"dropdown-hover": "rgba(105, 18, 170, 0.05)",
"dropdown-shadow": "0px 5px 20px 10px rgba(0, 0, 10, 0.05)",
"successful": "#39c539",
"successful-bg": "#c4eec4",
"pending": "#987e01",
"pending-bg": "#fff6cc",
"failed": "#e13340",
"failed-bg": "#f5bcc1"
},
keyframes: {
slideUp: {
from: {
"transform": "translateY(-150%)",
"overflow-y": "hidden"
},
to: {
"transform": "translateY(0)"
},
},
slideDown: {
from: {
"transform": "translateY(0)"
},
to: {
"transform": "translateY(-150%)",
"overflow-y": "hidden"
},
},
"scale-in": {
from: {
"opacity": "0",
"display": "none"
},
to: {
"opacity": "1",
"display": "grid"
},
},
"scale-out": {
from: {
"opacity": "1",
"display": "grid"
},
to: {
"opacity": "0",
"display": "none"
},
},
},
animation: {
slideUp: "slideUp 0s linear forwards",
slideDown: "slideDown 0s linear forwards",
"scale-in": "scale-in .15s linear forwards",
"scale-out": "scale-out .15s linear forwards",
},
backgroundImage: {
"team-bg": "url('../public/img/team-members-bg.png')",
"sidebar": "url('../public/img/sidebar-pattern-img.png')",
"mastercard-bg": "linear-gradient(105deg, rgba(75,34,146,1) 0%, rgba(143,105,208,1) 100%)",
"visacard-bg": "linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../public/img/visa-card-bg-pattern.png')",
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
};