Theming
The Blazor components decide how styling is applied based on multiple UI design standards, while FEDS uses Tailwind for direct styling.
[Parameter]
public ThemeVariant Theme { get; set; }public enum ThemeVariant
{
Indigo,
Blue,
Violet,
Gray,
Green,
Red
}Last updated
Was this helpful?