/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './app/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}', './hooks/**/*.{js,jsx,ts,tsx}', './lib/**/*.{js,jsx,ts,tsx}', ], presets: [require('nativewind/preset')], theme: { extend: { colors: { // DChain brand — deep navy + teal accent background: '#0d1117', surface: '#161b22', surfaceHigh: '#21262d', border: '#30363d', primary: '#2563eb', primaryFg: '#ffffff', accent: '#22d3ee', muted: '#8b949e', destructive: '#f85149', success: '#3fb950', }, }, }, plugins: [], };