20 lines
375 B
TypeScript
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
|