// This source file is adapted from the WinUI project.
// (https://github.com/microsoft/microsoft-ui-xaml)
//
// Licensed to The Avalonia Project under the MIT License.
using Avalonia.Media;
namespace Avalonia.Controls
{
///
/// Defines a specific component in the HSV color model.
///
public enum HsvComponent
{
///
/// The Alpha component.
///
///
/// Also see:
///
Alpha = 0,
///
/// The Hue component.
///
///
/// Also see:
///
Hue = 1,
///
/// The Saturation component.
///
///
/// Also see:
///
Saturation = 2,
///
/// The Value component.
///
///
/// Also see:
///
Value = 3
};
}