namespace WPFluent.Appearance;
///
/// Theme in which an application using WPF UI is displayed.
///
public enum ApplicationTheme
{
///
/// Sync application theme.
///
Auto,
///
/// Unknown application theme.
///
Unknown,
///
/// Dark application theme.
///
Dark,
///
/// Light application theme.
///
Light,
///
/// High contract application theme.
///
HighContrast,
}