feat: Introduce Alerts, Clips, and Settings tabs, update theme colors, and enhance ThemedView, ThemedText, and IconSymbol components.
This commit is contained in:
@@ -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',
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user