Introduces AppText, Link and FramedSegment redesign

This commit is contained in:
mashazyu
2020-03-23 09:39:55 +01:00
committed by Sofiya Tepikin
parent 1fc7bc17b9
commit 8c1c72ccc9
8 changed files with 116 additions and 21 deletions
+28
View File
@@ -0,0 +1,28 @@
import Colors from './colors'
import Spacing from './spacing'
const fonts = {
main: 'Jost-400-Book',
bold : 'Jost-700-Bold',
}
const sizes = {
mainMedium: 18,
mainLarge: 20,
titleSmall: 22,
titleMedium: 24,
titleLarge: 28
}
export default {
mainText: {
fontFamily: fonts.main,
fontSize: sizes.mainMedium
},
underline: { textDecorationLine: 'underline' },
titleSmall: {
color: Colors.purple,
fontSize: sizes.titleSmall,
marginVertical: Spacing.base
}
}