-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (35 loc) · 1007 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
35 lines (35 loc) · 1007 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-geist-sans)", "system-ui", "sans-serif"],
mono: ["var(--font-geist-mono)", "monospace"],
},
colors: {
brand: {
50: "#f8fafc",
100: "#f1f5f9",
900: "#0f172a",
950: "#020617",
},
},
animation: {
"fade-in": "fadeIn 0.4s ease-out",
"slide-up": "slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1)",
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
"spin-slow": "spin 3s linear infinite",
},
keyframes: {
fadeIn: { "0%": { opacity: "0" }, "100%": { opacity: "1" } },
slideUp: {
"0%": { opacity: "0", transform: "translateY(16px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
},
},
},
plugins: [],
};