-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
142 lines (141 loc) · 4.47 KB
/
Copy pathtailwind.config.js
File metadata and controls
142 lines (141 loc) · 4.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/**
* Tailwind CSS Configuration
*
* Note: These values are synchronized with config/theme.ts
* When updating theme values, ensure both files are kept in sync.
*
* TODO: Consider using tailwind.config.ts or a build step to import from theme.ts
*/
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
// Synchronized with config/theme.ts - Primary Colors
primary: {
50: '#eef2ff',
100: '#e0e7ff',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
500: '#6366f1', // Main primary
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
},
// Synchronized with config/theme.ts - Secondary Colors
secondary: {
50: '#ecfeff',
100: '#cffafe',
200: '#a5f3fc',
300: '#67e8f9',
400: '#22d3ee',
500: '#06b6d4', // Main secondary
600: '#0891b2',
700: '#0e7490',
800: '#155e75',
900: '#164e63',
},
// Synchronized with config/theme.ts - Accent Colors
accent: {
50: '#ecfdf5',
100: '#d1fae5',
200: '#a7f3d0',
300: '#6ee7b7',
400: '#34d399',
500: '#10b981', // Success/positive
600: '#059669',
700: '#047857',
800: '#065f46',
900: '#064e3b',
},
// Synchronized with config/theme.ts - Neutral Colors
neutral: {
50: '#fafafa',
100: '#f4f4f5',
200: '#e4e4e7',
300: '#d4d4d8',
400: '#a1a1aa',
500: '#71717a',
600: '#52525b',
700: '#3f3f46',
800: '#27272a',
900: '#18181b',
},
// Legacy cool colors for backward compatibility
cool: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
},
},
fontFamily: {
// Synchronized with config/theme.ts
sans: ['Inter', 'SF Pro Display', '-apple-system', 'BlinkMacSystemFont', 'system-ui', 'sans-serif'],
heading: ['Poppins', 'Inter', 'SF Pro Display', 'system-ui', 'sans-serif'],
body: ['Inter', 'SF Pro Text', '-apple-system', 'BlinkMacSystemFont', 'system-ui', 'sans-serif'],
display: ['Space Grotesk', 'Poppins', 'Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'SF Mono', 'Monaco', 'Consolas', 'monospace'],
// Additional font families
geometric: ['Outfit', 'Inter', 'system-ui', 'sans-serif'],
tech: ['Orbitron', 'Exo 2', 'Inter', 'system-ui', 'sans-serif'],
serif: ['Playfair Display', 'Georgia', 'Times New Roman', 'serif'],
},
maxWidth: {
'7xl': '1280px',
'8xl': '1400px',
'9xl': '1600px',
},
animation: {
// Synchronized with config/theme.ts
'fade-in': 'fadeIn 0.7s ease-in-out',
'slide-up': 'slideUp 0.5s ease-out',
'bounce-gentle': 'bounceGentle 2s infinite',
'slide-in-left': 'slideInLeft 0.7s ease-out',
'slide-in-right': 'slideInRight 0.7s ease-out',
'gradient-shift': 'gradientShift 8s ease infinite',
},
keyframes: {
// Synchronized with config/theme.ts
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
bounceGentle: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-5px)' },
},
slideInLeft: {
'0%': { opacity: '0', transform: 'translateX(-30px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
slideInRight: {
'0%': { opacity: '0', transform: 'translateX(30px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
gradientShift: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
},
},
},
plugins: [],
}