43 lines
1004 B
JavaScript
43 lines
1004 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: [
|
||
|
"./index.html",
|
||
|
"./src/**/*.{js,ts,jsx,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
background: {
|
||
|
DEFAULT: '#0f1419',
|
||
|
secondary: '#1a1f2e',
|
||
|
},
|
||
|
primary: {
|
||
|
DEFAULT: '#667eea',
|
||
|
dark: '#764ba2',
|
||
|
},
|
||
|
success: '#22c55e',
|
||
|
danger: '#ef4444',
|
||
|
info: '#3b82f6',
|
||
|
warning: '#f59e0b',
|
||
|
// Light theme colors
|
||
|
light: {
|
||
|
bg: '#f1f5f9',
|
||
|
secondary: '#e2e8f0',
|
||
|
text: '#334155',
|
||
|
muted: '#64748b',
|
||
|
},
|
||
|
},
|
||
|
backgroundImage: {
|
||
|
'gradient-primary': 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
|
||
|
'gradient-background': 'linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%)',
|
||
|
},
|
||
|
boxShadow: {
|
||
|
'glass': '0 8px 32px rgba(0, 0, 0, 0.3)',
|
||
|
},
|
||
|
backdropBlur: {
|
||
|
'glass': '16px',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|