Adjust colours on login screen

This commit is contained in:
Jake Howard 2016-03-12 15:55:37 +00:00
parent 628a201520
commit dac84477dc
2 changed files with 10 additions and 10 deletions

View file

@ -13,16 +13,16 @@ const styles = StyleSheet.create({
modal: { modal: {
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center', alignItems: 'center',
backgroundColor: GlobalStyles.get('CIRCLE_NAVBAR_BG'), backgroundColor: GlobalStyles.get('CIRCLE_BG'),
height: 200 height: 200
}, },
title: { title: {
fontSize: 18, fontSize: 18,
color: GlobalStyles.get('CIRCLE_NAVBAR_TEXT'), color: GlobalStyles.get('CIRCLE_TEXT'),
}, },
text: { text: {
fontSize: 13, fontSize: 13,
color: GlobalStyles.get('CIRCLE_NAVBAR_TEXT'), color: GlobalStyles.get('CIRCLE_TEXT'),
margin: 2, margin: 2,
textAlign: 'center' textAlign: 'center'
}, },

View file

@ -25,7 +25,7 @@ const {
const styles = StyleSheet.create({ const styles = StyleSheet.create({
container: { container: {
flex: 1, flex: 1,
backgroundColor: GlobalStyles.get('CIRCLE_BG'), backgroundColor: GlobalStyles.get('CIRCLE_NAVBAR_BG'),
}, },
contentWrapper: { contentWrapper: {
flex: 0.85, flex: 0.85,
@ -33,7 +33,7 @@ const styles = StyleSheet.create({
alignItems: 'center' alignItems: 'center'
}, },
input: { input: {
fontSize: 13, fontSize: 14,
marginHorizontal: 25, marginHorizontal: 25,
}, },
loginButton: { loginButton: {
@ -59,20 +59,20 @@ const styles = StyleSheet.create({
margin: 5 margin: 5
}, },
heading: { heading: {
fontSize: 14, fontSize: 16,
}, },
helpText: { helpText: {
fontSize: 10, fontSize: 12,
fontStyle: 'italic', fontStyle: 'italic',
margin: 5, margin: 5,
padding: 5, padding: 5,
}, },
text: { text: {
color: GlobalStyles.get('CIRCLE_TEXT'), color: GlobalStyles.get('CIRCLE_NAVBAR_TEXT'),
}, },
icon: { icon: {
height: 65, height: 75,
marginBottom: 50 marginBottom: 45
} }
}); });