managarten/apps/matrix/apps/mobile/tailwind.config.js
Till JS fdf44ea0b2 feat(matrix): add Expo React Native mobile client (Manalink)
Full Matrix messaging client for iOS/Android with:
- Matrix SDK integration with Zustand store and SecureStore credentials
- Expo Router file-based navigation with auth guard
- Room list, DMs, invites, and message timeline screens
- Message input with replies, reactions, editing, and redaction
- Image/file/voice message support with media upload
- Room creation, settings, and member management
- Global message search
- Push notifications with badge count
- Typing indicators and read receipts
- NativeWind (Tailwind CSS) styling with dark theme

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 12:28:45 +01:00

21 lines
483 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,ts,tsx}', './src/**/*.{js,ts,tsx}'],
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
background: '#0f0f0f',
surface: '#1a1a1a',
border: '#2a2a2a',
primary: '#7c6bff',
'primary-foreground': '#ffffff',
muted: '#6b7280',
foreground: '#f9fafb',
'muted-foreground': '#9ca3af',
destructive: '#ef4444',
},
},
},
plugins: [],
};