For example in TabNavigator.tsx headerTintColor is set in the following manner (line 207).
{code}
headerTintColor: useDarkTheme ? WHITE : PRIMARY_BLUE,
{code}
Jamaican version does not have dark theme, but it has blue header background for some reason. In any case, instead of setting color values, get them from theme. Add headerTintColor to theme -settings.
Check other color settings as well that they are read from theme instead of using fixed values.
For example in TabNavigator.tsx headerTintColor is set in the following manner (line 207).
{code} headerTintColor: useDarkTheme ? WHITE : PRIMARY_BLUE, {code}
Jamaican version does not have dark theme, but it has blue header background for some reason. In any case, instead of setting color values, get them from theme. Add headerTintColor to theme -settings.
Check other color settings as well that they are read from theme instead of using fixed values.