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.
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.
You would have to recompile the CSS from the source code and then reference your new css in the index.html or _host.cshtml
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">