mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 07:24:56 -06:00
23 lines
658 B
JavaScript
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 },
|
|
},
|
|
};
|