Files
frontend/tailwind.config.ts
2026-03-14 20:49:11 -04:00

20 lines
375 B
TypeScript

import type { Config } from 'tailwindcss'
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
trucker: {
bg: '#0f0f23',
card: '#1a1a35',
accent: '#f59e0b',
danger: '#ef4444',
safe: '#22c55e',
},
},
},
},
plugins: [],
} satisfies Config