indicatorStyle
에서backgroundColor
색상을 변경하면 된다.
<Tab.Navigator screenOptions={{ activeTintColor: 'black', // 눌렸을 때 색상 inactiveTintColor: color.grey2, // 안눌렀을 때 색상 labelStyle: { fontSize: 15, marginBottom: 5 }, tabBarIndicatorStyle: {backgroundColor: 'orange'}, iconStyle: { marginTop: 5 } }} > ... </Tab.Navigator>

