DialogService.Confirm Button color

HI, I use confirm dialog, which works, but the button's colors are the same. The second button(No) should be RED.
MyTitle
code:
DialogService.Confirm("Are you sure?", "MyTitle", new ConfirmOptions() { OkButtonText = "Yes",CancelButtonText = "No" });

I use Radzen.Blazor version(4.4.7)
Am I missing some CSS? Any suggestion?

Hi @Miodrag_Vidicki,

What theme are you using? It seems to be the Standard theme where the No button is indeed a lighter shade of blue. Try the material theme if you want it to red. To test all themes you can check here: Blazor Dialog component

Hi, @korchev
I check in _Layout.cshtml and its material-base.css
but in _Host it was standard.css, I change it to meterial.css, and its work now

Thanks a lot, I wish you a good day :slight_smile: