import { StyleSheet } from 'react-native'; export default StyleSheet.create({ h1: { fontSize: 24, fontWeight: 'bold', color: '#000', marginBottom: 8, }, h2: { fontSize: 18, fontWeight: 'bold', color: '#000', marginBottom: 8, }, h3: { fontSize: 16, fontWeight: 'bold', color: '#000', marginBottom: 8, }, h4: { fontSize: 14, fontWeight: 'bold', color: '#000', marginBottom: 8, }, h5: { fontSize: 12, fontWeight: 'bold', color: '#000', marginBottom: 8, }, h6: { fontSize: 10, fontWeight: 'bold', color: '#000', marginBottom: 8, }, p: { fontSize: 14, color: '#000', marginBottom: 8, }, span: { fontSize: 14, color: '#000', marginBottom: 8, }, a: { fontSize: 14, color: '#161dd0', marginBottom: 8, textDecorationLine: 'underline', }, textCenter: { textAlign: 'center' }, });