2017-02-08 21:21:07 -06:00
|
|
|
//@flow
|
|
|
|
|
/**
|
|
|
|
|
* Default theme for reference:
|
|
|
|
|
* https://github.com/xotahal/react-native-material-ui/blob/master/src/styles/themes/light.js
|
|
|
|
|
*/
|
2017-03-05 18:09:01 -06:00
|
|
|
import { COLOR } from 'react-native-material-ui';
|
2017-02-08 21:21:07 -06:00
|
|
|
|
|
|
|
|
export default {
|
2017-03-05 18:09:01 -06:00
|
|
|
palette: {
|
2017-04-16 21:37:59 -05:00
|
|
|
primaryColor: '#6d5354',
|
|
|
|
|
accentColor: '#9c7f80',
|
2017-03-05 18:09:01 -06:00
|
|
|
disabledColor: COLOR.grey500,
|
|
|
|
|
},
|
|
|
|
|
toolbar: {
|
2017-04-16 21:37:59 -05:00
|
|
|
titleText: { color: COLOR.white },
|
|
|
|
|
leftElement: { color: COLOR.white },
|
|
|
|
|
rightElement: { color: COLOR.white },
|
2017-03-11 21:58:47 -06:00
|
|
|
container: {
|
2017-04-16 21:37:59 -05:00
|
|
|
backgroundColor: '#6d5354',
|
2017-03-11 21:58:47 -06:00
|
|
|
height: 50,
|
|
|
|
|
elevation: 0,
|
|
|
|
|
},
|
2017-03-05 18:09:01 -06:00
|
|
|
},
|
|
|
|
|
page: {
|
|
|
|
|
container: { flex: 1, backgroundColor: COLOR.white },
|
|
|
|
|
},
|
2017-03-11 21:58:47 -06:00
|
|
|
topTabs: {
|
2017-04-09 23:28:28 -05:00
|
|
|
selectedUnderlineStyle: {
|
2017-04-16 21:37:59 -05:00
|
|
|
backgroundColor: COLOR.grey100,
|
2017-03-11 21:58:47 -06:00
|
|
|
},
|
2017-04-16 21:37:59 -05:00
|
|
|
textColor: COLOR.white,
|
|
|
|
|
selectedTextColor: 'rgba(255, 255, 255, 0.7)',
|
|
|
|
|
backgroundColor: '#6d5354',
|
2017-03-11 21:58:47 -06:00
|
|
|
},
|
2017-03-26 12:02:14 -05:00
|
|
|
itemTile: {
|
2017-03-25 21:05:55 -05:00
|
|
|
thumbnailSize: 50,
|
|
|
|
|
thumbnailColor: COLOR.grey500,
|
2017-03-26 12:02:14 -05:00
|
|
|
itemNameStyle: {
|
2017-04-14 12:28:48 -05:00
|
|
|
color: COLOR.grey800,
|
2017-03-26 12:02:14 -05:00
|
|
|
},
|
|
|
|
|
itemPlaceStyle: {
|
|
|
|
|
color: COLOR.grey500,
|
|
|
|
|
},
|
|
|
|
|
availableCountStyle: {
|
|
|
|
|
fontSize: 25,
|
|
|
|
|
color: COLOR.black,
|
|
|
|
|
},
|
2017-04-01 20:53:37 -05:00
|
|
|
pressHighlightColor: COLOR.pink500,
|
2017-03-25 21:05:55 -05:00
|
|
|
},
|
2017-02-08 21:21:07 -06:00
|
|
|
};
|