namespace Avalonia.Controls
{
///
/// Defines a specific component within a color model.
///
public enum ColorComponent
{
///
/// Represents the alpha component.
///
Alpha,
///
/// Represents the first color component which is Red when RGB or Hue when HSV.
///
Component1,
///
/// Represents the second color component which is Green when RGB or Saturation when HSV.
///
Component2,
///
/// Represents the third color component which is Blue when RGB or Value when HSV.
///
Component3
}
}