I am working with Radzen and Bootstrap 5 on a Blazor project. However I don't want the default colors that come with it.
I want to change Radzen primary colors so that my app has a different color theme.
So I added this to my app.css
:
:root {
--rz-primary: #3e5b87;
}
I also changed the order which app.css
and stylesheets is loaded, putting it in last.
How can I change this primary color?