-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
65 lines (64 loc) · 1.74 KB
/
tailwind.config.ts
File metadata and controls
65 lines (64 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["'DM Sans'", "sans-serif"],
mono: ["'JetBrains Mono'", "monospace"],
display: ["'Syne'", "sans-serif"],
},
colors: {
bg: "#0a0a0f",
surface: "#111118",
border: "#1e1e2e",
muted: "#3a3a52",
accent: "#6366f1",
"accent-dim": "#4f46e5",
"accent-glow": "rgba(99,102,241,0.15)",
fg: "#e8e8f0",
"fg-muted": "#8888aa",
success: "#22d3a0",
warning: "#f59e0b",
danger: "#ef4444",
info: "#38bdf8",
},
backgroundImage: {
"grid-pattern":
"linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px)",
},
backgroundSize: {
grid: "32px 32px",
},
animation: {
"fade-in": "fadeIn 0.4s ease forwards",
"slide-up": "slideUp 0.35s ease forwards",
pulse2: "pulse2 2s ease-in-out infinite",
blink: "blink 1s step-end infinite",
},
keyframes: {
fadeIn: {
from: { opacity: "0" },
to: { opacity: "1" },
},
slideUp: {
from: { opacity: "0", transform: "translateY(10px)" },
to: { opacity: "1", transform: "translateY(0)" },
},
pulse2: {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.5" },
},
blink: {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0" },
},
},
},
},
plugins: [],
};
export default config;