Change colour scheme again
This commit is contained in:
parent
d679e84f9b
commit
48e607b136
4 changed files with 8 additions and 16 deletions
|
@ -58,7 +58,7 @@ const styles = StyleSheet.create({
|
|||
},
|
||||
buttonText: {
|
||||
fontSize: 18,
|
||||
color: 'black'
|
||||
color: '#FFF'
|
||||
},
|
||||
buttonContainer: {
|
||||
flexDirection: 'row',
|
||||
|
@ -79,7 +79,7 @@ const styles = StyleSheet.create({
|
|||
},
|
||||
icon: {
|
||||
flex: 1,
|
||||
margin: 5
|
||||
margin: 15
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -159,7 +159,7 @@ export default class Login extends React.Component {
|
|||
<View style={styles.contentWrapper}>
|
||||
<Image
|
||||
style={styles.icon}
|
||||
source={require('../../img/circle-ci-logo.png')}
|
||||
source={require('../../img/circle-ci-logo@light.png')}
|
||||
resizeMode="contain"/>
|
||||
<Text style={[styles.heading, styles.text]}>
|
||||
Please enter your CircleCI token
|
||||
|
@ -189,14 +189,6 @@ export default class Login extends React.Component {
|
|||
Authenticate
|
||||
</Text>
|
||||
</TouchableHighlight>
|
||||
<TouchableHighlight
|
||||
style={[styles.button, styles.infoButton]}
|
||||
onPress={this.showAbout}
|
||||
underlayColor={GlobalStyles.get('CIRCLE_BG')}>
|
||||
<Text style={[styles.text, styles.buttonText]}>
|
||||
?
|
||||
</Text>
|
||||
</TouchableHighlight>
|
||||
</View>
|
||||
<TokenHelp open={this.state.showTokenHelp} onClose={this.hideTokenHelp} />
|
||||
<BusyIndicator />
|
||||
|
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
BIN
app/img/circle-ci-logo@light.png
Normal file
BIN
app/img/circle-ci-logo@light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
|
@ -1,9 +1,9 @@
|
|||
import { Map } from 'immutable';
|
||||
|
||||
export default Map({
|
||||
CIRCLE_GREEN: '#229922',
|
||||
CIRCLE_NAVBAR_BG: '#3D3D3D',
|
||||
CIRCLE_NAVBAR_TEXT: '#E0E0E0',
|
||||
CIRCLE_BG: '#F5F5F5',
|
||||
CIRCLE_TEXT: '#484848'
|
||||
CIRCLE_GREEN: '#292',
|
||||
CIRCLE_NAVBAR_BG: '#FFF',
|
||||
CIRCLE_NAVBAR_TEXT: '#343434',
|
||||
CIRCLE_BG: '#343434',
|
||||
CIRCLE_TEXT: '#DDD'
|
||||
});
|
||||
|
|
Reference in a new issue