Last active
May 6, 2019 17:27
-
-
Save thepost/99944871a51d23dbfd458a0d6b3d199b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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