import { StyleSheet } from 'react-native'; export const getStyles = (colors: any) => StyleSheet.create({ container: { flex: 1, width: '100%', height: '100%', backgroundColor: colors.inputBg, justifyContent: 'center', alignItems: 'center', }, map: { ...StyleSheet.absoluteFillObject, }, mockOverlay: { position: 'absolute', top: 40, padding: 10, borderRadius: 20, backgroundColor: 'rgba(255, 255, 255, 0.9)', alignSelf: 'center', }, mockText: { color: colors.primary, fontWeight: 'bold', }, });