Skip to content

Instantly share code, notes, and snippets.

@thepost
Last active May 6, 2019 17:27
Show Gist options
  • Save thepost/99944871a51d23dbfd458a0d6b3d199b to your computer and use it in GitHub Desktop.
Save thepost/99944871a51d23dbfd458a0d6b3d199b to your computer and use it in GitHub Desktop.
import { appTheme } from 'themes/ThemeInterface';
const Text = styled.Text`
font-family: 'AkkuratPro-Regular';
color: ${appTheme.colors.textPrimary};
font-size: 12;
`;
const H1 = styled(Text)`
font-size: 36;
`;
const H2 = styled(Text)`
font-size: 32;
`;
const H3 = styled(Text)`
font-size: 30;
`;
const H4 = styled(Text)`
font-size: 22;
`;
const H5 = styled(Text)`
font-size: 20;
`;
const H6 = styled(Text)`
font-size: 18;
`;
export { Text, H1, H2, H3, H4, H5, H6 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment