namespace Spectre.Console { /// /// Determines what color system should be used. /// public enum ColorSystemSupport { /// /// Try to detect the color system. /// Detect = 0, /// /// No colors. /// NoColors = 1, /// /// Legacy, 3-bit mode. /// Legacy = 2, /// /// Standard, 4-bit mode. /// Standard = 3, /// /// 8-bit mode. /// EightBit = 4, /// /// 24-bit mode. /// TrueColor = 5, } }