Enumeration
ConsoleLog.ANSIColor
public enum ANSIColor: String
Relationships
Member Of
ConsoleLog
A helper to send output to console/terminal/process
Conforms To
String
Enumeration Cases
black
case black = "\u{001B}[0;30m"
red
case red = "\u{001B}[0;31m"
green
case green = "\u{001B}[0;32m"
yellow
case yellow = "\u{001B}[0;33m"
blue
case blue = "\u{001B}[0;34m"
magenta
case magenta = "\u{001B}[0;35m"
cyan
case cyan = "\u{001B}[0;36m"
white
case white = "\u{001B}[0;37m"
clear
case clear = "\u{001B}[0;0m"