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