namespace Spectre.Console
{
///
/// Represents a color system.
///
public enum ColorSystem
{
///
/// 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,
}
}