/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './app/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}', ], theme: { extend: { colors: { bg: '#0a0a0a', surface: '#141414', surface2: '#1c1c1c', border: '#2a2a2a', accent: '#10b981', accent2: '#34d399', }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], };