feat: Introduce Alerts, Clips, and Settings tabs, update theme colors, and enhance ThemedView, ThemedText, and IconSymbol components.

This commit is contained in:
2025-12-06 11:42:00 +00:00
parent 3c31ead3ef
commit ed0faaa4d6
10 changed files with 315 additions and 207 deletions

View File

@@ -5,25 +5,31 @@
import { Platform } from 'react-native';
const tintColorLight = '#0a7ea4';
const tintColorLight = '#635bff';
const tintColorDark = '#fff';
export const Colors = {
light: {
text: '#11181C',
background: '#fff',
text: '#0a2540',
textSecondary: '#425466',
background: '#f6f9fc',
tint: tintColorLight,
icon: '#687076',
tabIconDefault: '#687076',
icon: '#8898aa',
tabIconDefault: '#8898aa',
tabIconSelected: tintColorLight,
card: '#ffffff',
border: '#e6ebf1',
},
dark: {
text: '#ECEDEE',
textSecondary: '#9BA1A6',
background: '#151718',
tint: tintColorDark,
icon: '#9BA1A6',
tabIconDefault: '#9BA1A6',
tabIconSelected: tintColorDark,
card: '#232526', // Fallback for dark mode
border: '#333333',
},
};