Files
Timmy-time-dashboard/mobile-app/theme.config.js
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

15 lines
532 B
JavaScript

/** @type {const} */
const themeColors = {
primary: { light: '#a855f7', dark: '#a855f7' },
background: { light: '#080412', dark: '#080412' },
surface: { light: '#110820', dark: '#110820' },
foreground: { light: '#ede0ff', dark: '#ede0ff' },
muted: { light: '#6b4a8a', dark: '#6b4a8a' },
border: { light: '#3b1a5c', dark: '#3b1a5c' },
success: { light: '#00e87a', dark: '#00e87a' },
warning: { light: '#ffb800', dark: '#ffb800' },
error: { light: '#ff4455', dark: '#ff4455' },
};
module.exports = { themeColors };