After upgrading to Material Design 3, I noticed that the background colors of certain things changed to a faded version of whatever my primary color is set to. For example, if I set my primary color to Red, the navBar and Calendar are now somewhat pink.
<style name="AppTheme" parent="Base.AppTheme" />
<style name="Base.AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
<item name="colorPrimary">@color/red</item>
</style>


I don't know why Material Design assumes that I want these background colors. My design documents require a white background, and setting the primary color to white is not an option. If I don't set a primary color at all, it defaults to purple!
I had some luck with navBar, because you can set the background color of each item, but no luck with the calendar. I've tried setting everything that sounds color related on a calendar style. So far nothing changes the calendar background except primaryColor. backgroundColor, backgroundTint, etc. Nothing has worked. Does anyone know how to override this behavior on Material Design 3?
I simply want to set my colorPrimary to green and set the background colors of actionBar, navBar, and calendar to white.
According to documentation and what i've tested, it seems material theme automatically find matching colors for you haven't specified. I've made a simple reproducer to show you the problem.
First, with only
colorPrimary
set :You can see theme set every color for you
In your case, i believe you have to set your own colors in the correct theme field, like the following example.
Solution
I've made a POC to test behavior (I know colors don't match Material Guidelines, but it's for test purpose only) Here you can see i've theme colors matching what i've set, and not what Material theme want.
Here you can see every color used by my components is sourced from my theme, and not by Material itself. (I know its cringy with theses colors, but I made it on purpose to identify behaviors for each field category (primary, secondary, tertiary, background, surface, etc)
Again, here is the documentation where you can find every field and its default value for Material default theme.
Hope this help you fix your problem, and if you need more help, please provide a minimal reproducer so we can try with the exact same config.
Have a nice day !