/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./app/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}'], presets: [require('nativewind/preset')], theme: { extend: { colors: { brand: '#A47148', ink: '#1A1A18', paper: '#FAFAF8', concrete: '#8A8A82', border: '#E8E6E0', }, fontFamily: { sans: ['System'], serif: ['Georgia'], }, }, }, plugins: [], }