/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./app/**/*.{js,ts,tsx}', './components/**/*.{js,ts,tsx}'], presets: [require('nativewind/preset')], theme: { extend: { colors: { dark: { bg: '#000000', // Main background - pure black surface: '#242424', // Cards, containers elevated: '#2a2a2a', // Elevated elements border: '#383838', // Borders input: '#1f1f1f', // Input fields } } }, }, plugins: [], };