/** @type {import('tailwindcss').Config} */ // // DChain messenger — dark-first palette inspired by the X-style Messages screen. // // `bg` is true black for OLED. `surface` / `surface2` lift for tiles, // inputs and pressed states. `accent` is the icy blue used by the // composer FAB and active filter pills. 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: { bg: '#000000', bg2: '#0a0a0a', surface: '#111111', surface2: '#1a1a1a', line: '#1f1f1f', text: '#ffffff', subtext: '#8b8b8b', muted: '#5a5a5a', accent: '#1d9bf0', ok: '#3ba55d', warn: '#f0b35a', err: '#f4212e', }, }, }, plugins: [], };