-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
302 lines (301 loc) · 9.45 KB
/
tailwind.config.js
File metadata and controls
302 lines (301 loc) · 9.45 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
// Cost Katana Professional Green Theme Colors
primary: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#06ec9e', // Main brand green (matching logo)
600: '#009454', // Darker green from logo
700: '#15803d',
800: '#166534',
900: '#14532d',
950: '#052e16',
},
secondary: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b', // Professional slate
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
950: '#020617',
},
accent: {
50: '#fefce8',
100: '#fef9c3',
200: '#fef08a',
300: '#fde047',
400: '#facc15',
500: '#eab308', // Golden yellow accent
600: '#ca8a04',
700: '#a16207',
800: '#854d0e',
900: '#713f12',
950: '#422006',
},
highlight: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9', // Bright blue highlight
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
950: '#082f49',
},
success: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#22c55e', // Success green
600: '#16a34a',
700: '#15803d',
800: '#166534',
900: '#14532d',
950: '#052e16',
},
danger: {
50: '#fef2f2',
100: '#fee2e2',
200: '#fecaca',
300: '#fca5a5',
400: '#f87171',
500: '#ef4444', // Error red
600: '#dc2626',
700: '#b91c1c',
800: '#991b1b',
900: '#7f1d1d',
950: '#450a0a',
},
// Brand colors for documentation
brand: {
accent: '#00C48B', // bright mint/emerald
accent2: '#0FAE6E', // secondary emerald
deep: '#006B45', // deep emerald
},
// Dark theme specific colors
dark: {
bg: {
100: '#000000', // Pure black
200: '#0C1012', // Landing page dark surface
300: '#1a1a1a', // Slightly lighter black
},
panel: '#0C1012', // Landing page hero surface
card: '#1a1a1a', // Card highlight
text: {
primary: '#f8fafc', // Clean white
secondary: '#cbd5e1', // Secondary text
muted: '#94a3b8', // Muted text
}
},
// Light theme specific colors
light: {
bg: '#ffffff', // Pure white
panel: '#f8fafc', // Light slate
card: '#f1f5f9', // Card highlight
text: {
primary: '#0f172a', // Deep slate
secondary: '#475569', // Muted slate
muted: '#64748b', // Muted text
}
},
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
display: ['Manrope', 'Inter', 'system-ui', 'sans-serif'],
body: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'ui-monospace', 'SFMono-Regular', 'monospace'],
rounded: ['Nunito', 'Inter', 'system-ui', 'sans-serif'],
},
backgroundImage: {
'gradient-primary': 'linear-gradient(135deg, #06ec9e, #009454)',
'gradient-secondary': 'linear-gradient(135deg, #64748b, #334155)',
'gradient-accent': 'linear-gradient(135deg, #eab308, #ca8a04)',
'gradient-warning': 'linear-gradient(135deg, #f59e0b, #d97706)',
'gradient-success': 'linear-gradient(135deg, #22c55e, #16a34a)',
'gradient-danger': 'linear-gradient(135deg, #ef4444, #dc2626)',
'gradient-highlight': 'linear-gradient(135deg, #0ea5e9, #0284c7)',
'gradient-dark-ambient': 'linear-gradient(135deg, #000000 0%, #0C1012 25%, #001a0d 50%, #0C1012 75%, #000000 100%)',
'gradient-light-ambient': 'radial-gradient(circle at top right, #f8fafc, #ffffff 70%)',
'gradient-dark-panel': 'linear-gradient(180deg, #1a1a1a, #0C1012)',
'gradient-light-panel': 'linear-gradient(180deg, #f1f5f9, #ffffff)',
'gradient-brand': 'linear-gradient(135deg, #06ec9e, #22c55e, #16a34a)',
'gradient-professional': 'linear-gradient(135deg, #f8fafc, #e2e8f0)',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'slide-in': 'slideIn 0.3s ease-out',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'shimmer': 'shimmer 2s linear infinite',
'float': 'float 3s ease-in-out infinite',
'rotate-slow': 'rotate-slow 3s linear infinite',
'rotate-reverse': 'rotate-reverse 2s linear infinite',
'gradient': 'gradient 15s ease infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideIn: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(0)' },
},
shimmer: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' },
},
'rotate-slow': {
'from': { transform: 'rotate(0deg)' },
'to': { transform: 'rotate(360deg)' },
},
'rotate-reverse': {
'from': { transform: 'rotate(360deg)' },
'to': { transform: 'rotate(0deg)' },
},
gradient: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
}
},
},
animationDelay: {
'75': '75ms',
'100': '100ms',
'150': '150ms',
'200': '200ms',
'300': '300ms',
'500': '500ms',
'700': '700ms',
'1000': '1000ms',
},
screens: {
'xs': '475px',
},
typography: {
DEFAULT: {
css: {
maxWidth: 'none',
color: 'inherit',
fontSize: '1rem',
lineHeight: '1.6',
p: {
fontSize: '1rem',
lineHeight: '1.7',
marginBottom: '1rem',
},
h1: {
fontSize: '2.5rem',
fontWeight: '700',
lineHeight: '1.2',
marginTop: '0',
marginBottom: '1.5rem',
color: 'inherit',
fontFamily: 'Manrope, Inter, system-ui, sans-serif',
},
h2: {
fontSize: '2rem',
fontWeight: '600',
lineHeight: '1.3',
marginTop: '2rem',
marginBottom: '1rem',
color: 'inherit',
fontFamily: 'Manrope, Inter, system-ui, sans-serif',
},
h3: {
fontSize: '1.5rem',
fontWeight: '600',
lineHeight: '1.4',
marginTop: '1.5rem',
marginBottom: '0.75rem',
color: 'inherit',
fontFamily: 'Manrope, Inter, system-ui, sans-serif',
},
h4: {
fontSize: '1.25rem',
fontWeight: '600',
lineHeight: '1.5',
marginTop: '1.25rem',
marginBottom: '0.5rem',
color: 'inherit',
fontFamily: 'Manrope, Inter, system-ui, sans-serif',
},
h5: {
fontSize: '1.125rem',
fontWeight: '600',
lineHeight: '1.5',
marginTop: '1rem',
marginBottom: '0.5rem',
color: 'inherit',
fontFamily: 'Manrope, Inter, system-ui, sans-serif',
},
h6: {
fontSize: '1rem',
fontWeight: '600',
lineHeight: '1.5',
marginTop: '1rem',
marginBottom: '0.5rem',
color: 'inherit',
fontFamily: 'Manrope, Inter, system-ui, sans-serif',
},
ul: {
paddingLeft: '1.5rem',
marginBottom: '1rem',
},
ol: {
paddingLeft: '1.5rem',
marginBottom: '1rem',
},
li: {
lineHeight: '1.7',
marginBottom: '0.5rem',
},
blockquote: {
fontSize: '1rem',
lineHeight: '1.7',
},
code: {
fontFamily: 'JetBrains Mono, Fira Code, ui-monospace, SFMono-Regular, monospace',
},
pre: {
fontFamily: 'JetBrains Mono, Fira Code, ui-monospace, SFMono-Regular, monospace',
},
},
},
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}