mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
22 lines
436 B
TypeScript
22 lines
436 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: ['./app/**/*.{ts,tsx}', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: '#030712',
|
|
muted: '#0f172a',
|
|
foreground: '#e2e8f0',
|
|
'muted-foreground': '#94a3b8',
|
|
border: '#1f2937',
|
|
card: '#111827',
|
|
primary: '#a855f7',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config
|