namespace WPFluent.Controls;
///
/// Types of the available color accents of the controls.
///
public enum ControlAppearance
{
///
/// Control color according to the current theme accent.
///
Primary,
///
/// Control color according to the current theme element.
///
Secondary,
///
/// Blue color theme.
///
Info,
///
/// Dark color theme.
///
Dark,
///
/// Light color theme.
///
Light,
///
/// Red color theme.
///
Danger,
///
/// Green color theme.
///
Success,
///
/// Orange color theme.
///
Caution,
///
/// Transparent color theme.
///
Transparent,
}