Customizing Radzen for blazor

Viewed 2686

Does anyone know how to customize the color scheme of radzen components for Blazor? I've tried to do this by figuring out which css class i should change, but I simply wasn't able to do that on the Tree component.

2 Answers

You would have to recompile the CSS from the source code and then reference your new css in the index.html or _host.cshtml

Radzen Blazor Source Code

If you just want to use a dark theme, then replace it

<link rel="stylesheet" href="_content/Radzen.Blazor/css/default.css">

with this.

<link rel="stylesheet" href="_content/Radzen.Blazor/css/dark.css">
Related