Adjust colours on login screen
This commit is contained in:
parent
628a201520
commit
dac84477dc
2 changed files with 10 additions and 10 deletions
|
@ -13,16 +13,16 @@ const styles = StyleSheet.create({
|
|||
modal: {
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
backgroundColor: GlobalStyles.get('CIRCLE_NAVBAR_BG'),
|
||||
backgroundColor: GlobalStyles.get('CIRCLE_BG'),
|
||||
height: 200
|
||||
},
|
||||
title: {
|
||||
fontSize: 18,
|
||||
color: GlobalStyles.get('CIRCLE_NAVBAR_TEXT'),
|
||||
color: GlobalStyles.get('CIRCLE_TEXT'),
|
||||
},
|
||||
text: {
|
||||
fontSize: 13,
|
||||
color: GlobalStyles.get('CIRCLE_NAVBAR_TEXT'),
|
||||
color: GlobalStyles.get('CIRCLE_TEXT'),
|
||||
margin: 2,
|
||||
textAlign: 'center'
|
||||
},
|
||||
|
|
|
@ -25,7 +25,7 @@ const {
|
|||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: GlobalStyles.get('CIRCLE_BG'),
|
||||
backgroundColor: GlobalStyles.get('CIRCLE_NAVBAR_BG'),
|
||||
},
|
||||
contentWrapper: {
|
||||
flex: 0.85,
|
||||
|
@ -33,7 +33,7 @@ const styles = StyleSheet.create({
|
|||
alignItems: 'center'
|
||||
},
|
||||
input: {
|
||||
fontSize: 13,
|
||||
fontSize: 14,
|
||||
marginHorizontal: 25,
|
||||
},
|
||||
loginButton: {
|
||||
|
@ -59,20 +59,20 @@ const styles = StyleSheet.create({
|
|||
margin: 5
|
||||
},
|
||||
heading: {
|
||||
fontSize: 14,
|
||||
fontSize: 16,
|
||||
},
|
||||
helpText: {
|
||||
fontSize: 10,
|
||||
fontSize: 12,
|
||||
fontStyle: 'italic',
|
||||
margin: 5,
|
||||
padding: 5,
|
||||
},
|
||||
text: {
|
||||
color: GlobalStyles.get('CIRCLE_TEXT'),
|
||||
color: GlobalStyles.get('CIRCLE_NAVBAR_TEXT'),
|
||||
},
|
||||
icon: {
|
||||
height: 65,
|
||||
marginBottom: 50
|
||||
height: 75,
|
||||
marginBottom: 45
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Reference in a new issue