Change colour scheme again

This commit is contained in:
Jake Howard 2016-02-06 18:53:54 +00:00
parent d679e84f9b
commit 48e607b136
4 changed files with 8 additions and 16 deletions

View File

@ -58,7 +58,7 @@ const styles = StyleSheet.create({
}, },
buttonText: { buttonText: {
fontSize: 18, fontSize: 18,
color: 'black' color: '#FFF'
}, },
buttonContainer: { buttonContainer: {
flexDirection: 'row', flexDirection: 'row',
@ -79,7 +79,7 @@ const styles = StyleSheet.create({
}, },
icon: { icon: {
flex: 1, flex: 1,
margin: 5 margin: 15
} }
}); });
@ -159,7 +159,7 @@ export default class Login extends React.Component {
<View style={styles.contentWrapper}> <View style={styles.contentWrapper}>
<Image <Image
style={styles.icon} style={styles.icon}
source={require('../../img/circle-ci-logo.png')} source={require('../../img/circle-ci-logo@light.png')}
resizeMode="contain"/> resizeMode="contain"/>
<Text style={[styles.heading, styles.text]}> <Text style={[styles.heading, styles.text]}>
Please enter your CircleCI token Please enter your CircleCI token
@ -189,14 +189,6 @@ export default class Login extends React.Component {
Authenticate Authenticate
</Text> </Text>
</TouchableHighlight> </TouchableHighlight>
<TouchableHighlight
style={[styles.button, styles.infoButton]}
onPress={this.showAbout}
underlayColor={GlobalStyles.get('CIRCLE_BG')}>
<Text style={[styles.text, styles.buttonText]}>
?
</Text>
</TouchableHighlight>
</View> </View>
<TokenHelp open={this.state.showTokenHelp} onClose={this.hideTokenHelp} /> <TokenHelp open={this.state.showTokenHelp} onClose={this.hideTokenHelp} />
<BusyIndicator /> <BusyIndicator />

View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -1,9 +1,9 @@
import { Map } from 'immutable'; import { Map } from 'immutable';
export default Map({ export default Map({
CIRCLE_GREEN: '#229922', CIRCLE_GREEN: '#292',
CIRCLE_NAVBAR_BG: '#3D3D3D', CIRCLE_NAVBAR_BG: '#FFF',
CIRCLE_NAVBAR_TEXT: '#E0E0E0', CIRCLE_NAVBAR_TEXT: '#343434',
CIRCLE_BG: '#F5F5F5', CIRCLE_BG: '#343434',
CIRCLE_TEXT: '#484848' CIRCLE_TEXT: '#DDD'
}); });