first commit

This commit is contained in:
2026-03-14 20:49:11 -04:00
commit 08768723bc
31 changed files with 8984 additions and 0 deletions

19
tailwind.config.ts Normal file
View File

@@ -0,0 +1,19 @@
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