This is what my bottom navigation bar looks like at the moment:
Looks great right? Except that, right now you can see each icon clearly (or mostly clearly), however when you view it on my device you can barely make out the icons at all.
I have the following in my themes.xml at the moment:
...
<!-- Navigation bar colour. -->
<item name="android:navigationBarColor">@color/pink</item>
<item name="android:windowLightNavigationBar">false</item><!-- This does nothing -->
...
At the moment my minSdkVersion is 29 and my targetSdkVersion is 30.
How could I change the icons colour, or if that's not possible, at least have them a darker colour so they can be viewable?

