namespace Avalonia.Controls
{
///
/// Defines the model used to represent colors.
///
public enum ColorModel
{
///
/// Color is represented by hue, saturation, value and alpha components.
///
Hsva,
///
/// Color is represented by red, green, blue and alpha components.
///
Rgba
}
}