2018-03-11 16:32:13 +01:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
const splashStyle = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
backgroundColor: '#40b89a'
|
|
|
|
},
|
|
|
|
title: {
|
2018-03-22 07:26:04 +01:00
|
|
|
fontFamily: 'Metropolis-Bold',
|
2018-03-11 16:32:13 +01:00
|
|
|
fontSize: 64,
|
|
|
|
textAlign: 'center',
|
|
|
|
marginBottom: 48,
|
|
|
|
color: '#ffffff'
|
|
|
|
},
|
|
|
|
details: {
|
2018-03-22 07:26:04 +01:00
|
|
|
fontFamily: 'Metropolis-Regular',
|
2018-03-11 16:32:13 +01:00
|
|
|
fontSize: 14,
|
|
|
|
marginLeft: 16,
|
|
|
|
marginRight: 16,
|
|
|
|
color: '#ffffff',
|
|
|
|
textAlign: 'center'
|
|
|
|
},
|
|
|
|
message: {
|
2018-03-22 07:26:04 +01:00
|
|
|
fontFamily: 'Metropolis-Bold',
|
2018-03-11 16:32:13 +01:00
|
|
|
fontSize: 18,
|
|
|
|
color: '#ffffff',
|
|
|
|
marginLeft: 16,
|
|
|
|
marginRight: 16,
|
|
|
|
marginBottom: 4,
|
|
|
|
textAlign: 'center'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default splashStyle;
|