34 lines
750 B
TypeScript
34 lines
750 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./app/**/*.{ts,tsx}',
|
|
'./components/**/*.{ts,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'bg-base': '#000000',
|
|
'bg-card': '#0a0a0a',
|
|
'bg-deep': '#050505',
|
|
'bg-hover': '#0d0d0d',
|
|
'bg-input': '#060606',
|
|
'border-default': '#141414',
|
|
'border-hover': '#222222',
|
|
'text-primary': '#ffffff',
|
|
'text-secondary': '#e2e8f0',
|
|
'text-muted': '#555555',
|
|
'text-faint': '#333333',
|
|
accent: '#f97316',
|
|
'accent-hover': '#fb923c',
|
|
green: '#4ade80',
|
|
red: '#ef4444',
|
|
purple: '#818cf8',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config
|