UI improvements

This commit is contained in:
Overtorment 2018-05-06 19:02:40 +01:00
parent c310034333
commit 65f1cf150d
3 changed files with 5 additions and 6 deletions

View File

@ -51,8 +51,8 @@ export class BlueCard extends Component {
<Card
{...this.props}
titleStyle={{ color: 'white' }}
containerStyle={{ backgroundColor: BlueApp.settings.buttonBackground }}
wrapperStyle={{ backgroundColor: BlueApp.settings.buttonBackground }}
containerStyle={{ backgroundColor: BlueApp.settings.brandingColor }}
wrapperStyle={{ backgroundColor: BlueApp.settings.brandingColor }}
/>
);
}

View File

@ -11,9 +11,8 @@ export class AppStorage {
this.tx_metadata = {};
this.cachedPassword = false;
this.settings = {
brandingColor: '#00aced',
buttonBackground: '#00aced',
buttonDangedBackground: '#F40349',
brandingColor: '#008dc2',
buttonBackground: '#008dc2',
};
}

View File

@ -71,7 +71,7 @@ export default class ReceiveDetails extends Component {
<BlueButton
icon={{ name: 'arrow-left', type: 'octicon' }}
backgroundColor={BlueApp.settings.buttonBackground}
backgroundColor={BlueApp.settings.brandingColor}
onPress={() => this.props.navigation.goBack()}
title="Go back"
/>