erp-transportistas-frontend-v2/tailwind.config.js
Adrian Flores Cortes efc8cef4cd feat: Initial frontend structure for ERP Transportistas
- React 18.x with Vite configuration
- TailwindCSS with transport-themed colors
- Leaflet for map integration
- TypeScript setup with path aliases

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 09:51:26 -06:00

40 lines
1015 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Colores del giro transporte
transport: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
// Estados de viaje
status: {
draft: '#9ca3af', // Borrador
planned: '#3b82f6', // Planeado
dispatched: '#f59e0b', // Despachado
in_transit: '#10b981', // En transito
at_destination: '#8b5cf6', // En destino
delivered: '#22c55e', // Entregado
closed: '#6b7280', // Cerrado
invoiced: '#0ea5e9', // Facturado
collected: '#059669', // Cobrado
},
},
},
},
plugins: [],
}