On react-navigation's DrawerNavigator, is there a way to change the background color?
By default, the color scheme looks like the following:

Which is initialized by the following:
export const Drawer = DrawerNavigator({
dOne: {
screen: Screen1,
},
dTwo: {
screen: Screen2,
}
}
);