/// <summary>
/// Represents the configuration settings for themes.
/// </summary>
public record LumexTheme
{
    public ThemeConfigLight Light { get; set; }
    public ThemeConfigDark Dark { get; set; }
    public ThemeType DefaultTheme { get; set; }
}