Files
Timmy-time-dashboard/mobile-app/theme.config.d.ts
Manus AI b4b508ff5a feat: add Timmy Chat mobile app (Expo/React Native)
- Single-screen chat interface with Timmy's sovereign AI personality
- Text messaging with real-time AI responses via server chat API
- Voice recording and playback with waveform visualization
- Image sharing (camera + photo library) with full-screen viewer
- File attachments via document picker
- Dark arcane theme matching the Timmy Time dashboard
- Custom app icon with glowing T circuit design
- Timmy system prompt ported from dashboard prompts.py
- Unit tests for chat utilities and message types
2026-02-26 21:55:41 -05:00

18 lines
525 B
TypeScript

export const themeColors: {
primary: { light: string; dark: string };
background: { light: string; dark: string };
surface: { light: string; dark: string };
foreground: { light: string; dark: string };
muted: { light: string; dark: string };
border: { light: string; dark: string };
success: { light: string; dark: string };
warning: { light: string; dark: string };
error: { light: string; dark: string };
};
declare const themeConfig: {
themeColors: typeof themeColors;
};
export default themeConfig;