Blazorise icon indicating copy to clipboard operation
Blazorise copied to clipboard

Theme: add an option to define a font-family

Open stsrki opened this issue 2 months ago • 1 comments

Proposal: Add it to the ThemeBodyOptions

/// <summary>
/// Defines the body theme options.
/// </summary>
public record ThemeBodyOptions
{
    /// <summary>
    /// Gets or sets the body background color.
    /// </summary>
    /// <remarks>
    /// If defined it will also override any <see cref="Background.Body"/>.
    /// </remarks>
    public string BackgroundColor { get; set; }

    /// <summary>
    /// Gets or sets the body text color.
    /// </summary>
    /// <remarks>
    /// If defined it will also override any <see cref="TextColor.Body"/>.
    /// </remarks>
    public string TextColor { get; set; }

+    public string FontFamily { get; set; }
}

stsrki avatar May 25 '24 11:05 stsrki