27 lines
694 B
JavaScript
27 lines
694 B
JavaScript
// Import the themed Colors from the Expo generated file
|
|
import { Colors as ThemedColors } from './Colors.ts';
|
|
|
|
// Define our app's default colors to match the frontend
|
|
const Colors = {
|
|
primary: '#3854a6', // Deeper blue like the frontend
|
|
secondary: '#667eea',
|
|
background: '#f8fafc',
|
|
card: '#ffffff',
|
|
text: '#2d3748',
|
|
border: '#e2e8f0',
|
|
notification: '#ef4444',
|
|
success: '#10b981',
|
|
warning: '#f59e0b',
|
|
error: '#ef4444',
|
|
inactive: '#94a3b8',
|
|
cardShadow: 'rgba(0, 0, 0, 0.1)',
|
|
divider: '#e2e8f0',
|
|
headerBg: '#ffffff',
|
|
buttonText: '#ffffff',
|
|
accent: '#7f9cf5',
|
|
placeholder: '#a0aec0',
|
|
};
|
|
|
|
// Export both color sets
|
|
export { ThemedColors };
|
|
export default Colors;
|