- Add new database migrations for analysis data and job tracking - Implement enhanced document processing service with LLM integration - Add processing progress and queue status components - Create testing guides and utility scripts for CIM processing - Update frontend components for better user experience - Add environment configuration and backup files - Implement job queue service and upload progress tracking
77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Blue Point Capital inspired colors
|
|
primary: {
|
|
50: '#f0f4f8',
|
|
100: '#d9e2ec',
|
|
200: '#bcccdc',
|
|
300: '#9fb3c8',
|
|
400: '#829ab1',
|
|
500: '#627d98',
|
|
600: '#486581',
|
|
700: '#334e68',
|
|
800: '#243b53',
|
|
900: '#102a43',
|
|
},
|
|
// Gold accent color
|
|
accent: {
|
|
50: '#fffbf0',
|
|
100: '#fef3c7',
|
|
200: '#fde68a',
|
|
300: '#fcd34d',
|
|
400: '#fbbf24',
|
|
500: '#f59e0b',
|
|
600: '#d97706',
|
|
700: '#b45309',
|
|
800: '#92400e',
|
|
900: '#78350f',
|
|
},
|
|
// Clean grays for Google-like design
|
|
gray: {
|
|
50: '#fafafa',
|
|
100: '#f5f5f5',
|
|
200: '#eeeeee',
|
|
300: '#e0e0e0',
|
|
400: '#bdbdbd',
|
|
500: '#9e9e9e',
|
|
600: '#757575',
|
|
700: '#616161',
|
|
800: '#424242',
|
|
900: '#212121',
|
|
},
|
|
// Success/Error colors
|
|
success: {
|
|
50: '#f0fdf4',
|
|
500: '#22c55e',
|
|
600: '#16a34a',
|
|
},
|
|
error: {
|
|
50: '#fef2f2',
|
|
500: '#ef4444',
|
|
600: '#dc2626',
|
|
},
|
|
warning: {
|
|
50: '#fffbeb',
|
|
500: '#f59e0b',
|
|
600: '#d97706',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
boxShadow: {
|
|
'soft': '0 2px 8px rgba(0, 0, 0, 0.08)',
|
|
'medium': '0 4px 12px rgba(0, 0, 0, 0.12)',
|
|
'large': '0 8px 24px rgba(0, 0, 0, 0.16)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |