-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 1.01 KB
/
tailwind.config.js
File metadata and controls
44 lines (43 loc) · 1.01 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
safelist: [
"bg-teal-500",
"hover:bg-teal-600",
"px-4",
"py-2",
"rounded-lg",
"text-white",
// "translate-x-0",
// "-translate-x-full",
// "md:hidden",
// "md:translate-x-0",
// "md:ml-72",
],
theme: {
extend: {
animation: {
"fade-in-out": "fadeInOut 5s ease-in-out",
},
fontFamily: {
inter: ["Inter", "sans-serif"],
},
colors: {
charcoal: "#1F2526",
secondary: "#2A3032",
offwhite: "#E5E7EB",
darkgray: "#4B5563",
teal: "#4DB6AC",
},
keyframes: {
fadeInOut: {
"0%": { opacity: "0", transform: "translateY(10px)" },
"10%": { opacity: "1", transform: "translateY(0)" },
"90%": { opacity: "1", transform: "translateY(0)" },
"100%": { opacity: "0", transform: "translateY(10px)" },
},
},
},
},
plugins: [],
};