-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
76 lines (74 loc) · 1.95 KB
/
tailwind.config.ts
File metadata and controls
76 lines (74 loc) · 1.95 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
66
67
68
69
70
71
72
73
74
75
76
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: {
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "#0F172A", // Slate 900 - Modern dark
light: "#334155", // Slate 700
foreground: "#ffffff",
},
accent: {
DEFAULT: "#3B82F6", // Blue 500 - Clean blue
light: "#60A5FA", // Blue 400
dark: "#2563EB", // Blue 600
foreground: "#ffffff",
},
purple: {
DEFAULT: "#8B5CF6",
light: "#A78BFA",
dark: "#7C3AED",
},
secondary: {
DEFAULT: "#64748B", // Slate 500
foreground: "#ffffff",
},
success: {
DEFAULT: "#22C55E", // Green 500
light: "#86EFAC", // Green 300
foreground: "#ffffff",
},
warning: {
DEFAULT: "#F59E0B",
foreground: "#ffffff",
},
danger: {
DEFAULT: "#EF4444",
foreground: "#ffffff",
},
neutral: {
50: "#FAFAFA",
100: "#F5F5F5",
200: "#E5E5E5",
300: "#D4D4D4",
400: "#A3A3A3",
500: "#737373",
600: "#525252",
700: "#404040",
800: "#262626",
900: "#171717",
}
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
},
boxShadow: {
'soft': '0 2px 8px rgba(0, 0, 0, 0.04)',
'medium': '0 4px 16px rgba(0, 0, 0, 0.08)',
'strong': '0 8px 32px rgba(0, 0, 0, 0.12)',
},
},
},
plugins: [],
};
export default config;