import type { Config } from 'tailwindcss' const config: Config = { content: [ './src/pages/**/*.{js,ts,jsx,tsx,mdx}', './src/components/**/*.{js,ts,jsx,tsx,mdx}', './src/app/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: { colors: { brand: { bg: '#0F172A', card: '#1E293B', border: '#334155', accent: '#3B82F6', 'accent-hover': '#2563EB', muted: '#94A3B8', text: '#F8FAFC', }, }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], } export default config