#nullable enable namespace Terminal.Gui; /// /// Contains style settings for e.g. which /// to use. /// public class ColorPickerStyle { /// /// The color model for picking colors by RGB, HSV, etc. /// public ColorModel ColorModel { get; set; } = ColorModel.HSV; /// /// True to put the numerical value of bars on the right of the color bar /// public bool ShowTextFields { get; set; } = true; /// /// True to show an editable text field indicating the w3c/console color name of selected color. /// public bool ShowColorName { get; set; } = false; }