aretherecookies-mobile/js/ui-theme.js
2017-03-05 18:09:01 -06:00

23 lines
658 B
JavaScript

//@flow
/**
* Default theme for reference:
* https://github.com/xotahal/react-native-material-ui/blob/master/src/styles/themes/light.js
*/
import { COLOR } from 'react-native-material-ui';
export default {
palette: {
primaryColor: COLOR.orange500,
accentColor: COLOR.teal500,
disabledColor: COLOR.grey500,
},
toolbar: {
titleText: { color: COLOR.grey800 },
leftElement: { color: COLOR.grey800 },
rightElement: { color: COLOR.grey800 },
container: { backgroundColor: COLOR.grey200, height: 50 },
},
page: {
container: { flex: 1, backgroundColor: COLOR.white },
},
};