-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
58 lines (56 loc) · 1.59 KB
/
Copy pathtailwind.config.ts
File metadata and controls
58 lines (56 loc) · 1.59 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["'DM Sans'", "sans-serif"],
mono: ["'DM Mono'", "monospace"],
},
colors: {
base: "#060810",
surface: "#0d0f1a",
elevated: "#131626",
hover: "#1a1d2e",
border: "#1e2235",
"border-bright": "#2a2f4a",
brand: {
blue: "#3b82f6",
bright: "#60a5fa",
purple: "#8b5cf6",
cyan: "#06b6d4",
},
status: {
green: "#10b981",
yellow: "#f59e0b",
red: "#ef4444",
},
text: {
primary: "#f0f2ff",
secondary: "#8b90b0",
muted: "#4a4f6a",
},
},
backgroundImage: {
"gradient-brand": "linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%)",
"gradient-glow": "linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(139,92,246,0.15) 100%)",
"gradient-card": "linear-gradient(160deg, #0d0f1a 0%, #131626 100%)",
},
boxShadow: {
"glow-blue": "0 0 30px rgba(59,130,246,0.15)",
"glow-purple": "0 0 30px rgba(139,92,246,0.12)",
"card": "0 4px 24px rgba(0,0,0,0.4)",
},
animation: {
"fade-up": "fadeUp 0.4s ease-out forwards",
"pulse-slow": "pulse 3s ease-in-out infinite",
},
},
},
plugins: [],
};
export default config;