19 lines
423 B
JavaScript
19 lines
423 B
JavaScript
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: '#0f0f12',
|
|
'bg-secondary': '#1a1a1f',
|
|
text: '#e4e4e7',
|
|
'text-muted': '#a1a1aa',
|
|
primary: '#3b82f6',
|
|
'primary-hover': '#2563eb',
|
|
border: '#27272a',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config; |