On react-navigation's DrawerNavigator, is there a way to change the text color and background color for the item?
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,
}
}
);
Setting the color property within the screen's contentOptions's style does not appear to have an effect.
Should I extend new components for each row (labeled "Primary", "Secondary", etc. right now)? or is there an easier way to stylize the existing implementation of the rows?