Gradient in Browser Issue

Hello, I noticed that there is a blue, purple, orange gradient that appears in the browser's lower right corner. I created a new Blazor Server Web App and configured it with Radzen.

During troubleshooting I discovered that if I comment out the theming
"RadzenTheme Theme="standard-dark" />"
the issue goes away. However, this is needed for theming to work.

Has anyone else experienced this issue?

The gradient is part of the standard theme. Use a different one if you don't want it.

Hello Korchev, thank you for the quick response. I am new to Radzen so I was not aware that the gradient was built into the theme. I appreciate your assistance.

Add this to your style to remove the gradient.

body {
	background: none !important;
}