Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@lrlineroa
Last active February 24, 2020 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lrlineroa/ab352bebbcda7bcdeaa8128a9adbaebd to your computer and use it in GitHub Desktop.
Save lrlineroa/ab352bebbcda7bcdeaa8128a9adbaebd to your computer and use it in GitHub Desktop.
import { StyleSheet } from 'react-native';
import appConstants from './AppConstants';
export default values = {
styles: StyleSheet.create({
centered: {
justifyContent: 'center',
alignItems: 'center',
},
container: {
flex: 1,
},
promptTitle: {
fontSize: 20,
fontFamily: 'Roboto',
},
paddingZero: {
paddingBottom: 0,
paddingTop: 0,
paddingRight: 0,
paddingLeft: 0,
},
appText: {
fontSize: 16,
fontFamily: appConstants.textStyleConstants.LIGTH,
},
appTextBold: {
fontSize: 16,
fontFamily: appConstants.textStyleConstants.BOLD,
},
appSecondaryText: {
fontSize: 16,
fontFamily: 'Lato-Black'
},
marginEqual: {
marginLeft: 40,
marginRight: 40,
},
btnText: {
fontSize: 18,
color: 'white',
fontFamily: appConstants.textStyleConstants.BOLD,
},
logo: {
alignSelf: 'center',
height: 124,
width: 168,
marginTop: 49
}
}),
appPrimaryColor: '#D70026',
appSecondaryColor: '#A9A9A9',
appThirdColor: '#E9F1DF',
appFourthColor:'#80bd9e',
buttonColor: '#D70026',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment