Theming

The Blazor components decide how styling is applied based on multiple UI design standards, while FEDS uses Tailwind for direct styling.

Any Blazor component can accept a theme variant as a parameter by using the ThemeVariantenum:

[Parameter]
public ThemeVariant Theme { get; set; }

The default value is ThemeVariant.Indigo, however, another default value can be provided at any time.

The possible theme variants are as followed:

public enum ThemeVariant
{
    Indigo,
    Blue,
    Violet,
    Gray,
    Green,
    Red
}

The ThemeVariantResolveris used to define which styles should be used.


The primary theme color is indigo-500which uses the HEX Code #6366f1.

Last updated

Was this helpful?