I'm using MudBlazor v6.07 and I know how to change the individual colors of the (UI) components using a new theme and code like this:
private MudTheme _myTheme= new MudTheme();
_myTheme.Palette.Primary = new MudBlazor.Utilities.MudColor("#090");
But I would like to switch to one of the palettes at once, like Green or Pink. Instead of modifying each theme color one by one.
I assume this can be done, but I can't find how to do this.