RadzenBlazor Sidebar change menu color?

The following CSS should work:

 .panel-menu {
    background-color: red;
 }

 .panel-menu .navigation-menu .navigation-item-wrapper {
    background-color: red;
 }

Make sure your CSS is included after the theme CSS file. Otherwise you have to use higher CSS specificity or the !important modifier.