| 123456789101112131415161718192021222324 |
- // ReSharper disable InconsistentNaming
- namespace Terminal.Gui.Drawing;
- /// <summary>
- /// Describes a way of modelling color e.g. Hue, Saturation, and Lightness.
- /// </summary>
- public enum ColorModel
- {
- /// <summary>
- /// Color modelled by storing Red, Green and Blue as (0-255) ints
- /// </summary>
- RGB,
- /// <summary>
- /// Color modelled by storing Hue (360 degrees), Saturation (100%) and Value (100%)
- /// </summary>
- HSV,
- /// <summary>
- /// Color modelled by storing Hue (360 degrees), Saturation (100%) and Lightness (100%)
- /// </summary>
- HSL
- }
|