You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. // @flow
  2. import BaseTheme from '../../base/ui/components/BaseTheme';
  3. export const drawerContentOptions = {
  4. drawerActiveBackgroundColor: BaseTheme.palette.ui12,
  5. drawerActiveTintColor: BaseTheme.palette.screen01Header,
  6. drawerLabelStyle: {
  7. marginLeft: BaseTheme.spacing[2]
  8. },
  9. drawerStyle: {
  10. backgroundColor: BaseTheme.palette.ui12,
  11. width: '54%'
  12. }
  13. };