2026-07-01 09:55:55 +05:30

36 lines
736 B
TypeScript

import { StyleSheet } from 'react-native';
import { typography } from '@theme';
export const getStyles = (colors: any) => StyleSheet.create({
container: {
flex: 1,
backgroundColor: colors.background,
paddingHorizontal: 24,
},
content: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
icon: {
fontSize: 80,
marginBottom: 24,
},
title: {
fontSize: typography.fontSize.xxl,
fontWeight: typography.fontWeight.bold,
color: colors.text,
marginBottom: 12,
},
subtitle: {
fontSize: typography.fontSize.md,
color: colors.textSecondary,
textAlign: 'center',
lineHeight: 24,
paddingHorizontal: 16,
},
footer: {
paddingBottom: 40,
},
});