import { StyleSheet } from 'react-native';

export const TypographyStyles = StyleSheet.create({
  bold: {
    fontWeight: 'bold',
  },
  h1: {
    fontSize: 32,
    fontWeight: 'bold',
  },
  h2: {
    fontSize: 24,
    fontWeight: 'bold',
  },
  h3: {
    fontSize: 18,
    fontWeight: 'bold',
  },
  h4: {
    fontSize: 16,
    fontWeight: 'bold',
  },
  h5: {
    fontSize: 14,
    fontWeight: 'bold',
  },
  h6: {
    fontSize: 12,
    fontWeight: 'bold',
  },
  p: {
    fontSize: 14,
  },
  a: {
    fontSize: 14,
  },
  small: {
    fontSize: 12,
  },
  code: {
    fontSize: 12,
  },
});
