Hi all,
in dark theme the color of the text in DialogService.Alert message is darkgrey, so is unreadable.
How can I fix that?
Hi all,
in dark theme the color of the text in DialogService.Alert message is darkgrey, so is unreadable.
How can I fix that?
Hi @daniele,
Looks like the color in your is not set or set to black/dark, or there are some additional styles interfering with Radzen's ones.
Try adding the following CSS:
.rz-dialog-content {
color: var(--rz-text-color);
}
If you want to style the alert message only, use this instead:
.rz-dialog-alert-message {
color: var(--rz-text-color);
}