#nullable enable
namespace Terminal.Gui;
///
/// Describes away of modelling color e.g. Hue
/// Saturation Lightness.
///
public enum ColorModel
{
///
/// Color modelled by storing Red, Green and Blue as (0-255) ints
///
RGB,
///
/// Color modelled by storing Hue (360 degrees), Saturation (100%) and Value (100%)
///
HSV,
///
/// Color modelled by storing Hue (360 degrees), Saturation (100%) and Lightness (100%)
///
HSL
}