mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 09:39:41 +02:00
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>
21 lines
483 B
JavaScript
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: [],
|
|
};
|