Fore

#import Builtin.ColorPrint.Fore;

Module containing the foreground color codes used for printing colors.

The proper way to use these is like Fore.red, for example:

colorPrint("Red text", Fore.red);

Constants


black "\x1B[30m"
const string
black color
red "\x1B[31m"
const string
red color
green "\x1B[32m"
const string
green color
yellow "\x1B[33m"
const string
yellow color
blue "\x1B[34m"
const string
blue color
magenta "\x1B[35m"
const string
magenta color
cyan "\x1B[36m"
const string
cyan color
white "\x1B[37m"
const string
white color
brightBlack "\x1B[90m"
const string
brightBlack color
brightRed "\x1B[91m"
const string
brightRed color
brightGreen "\x1B[92m"
const string
brightGreen color
brightYellow "\x1B[93m"
const string
brightYellow color
brightBlue "\x1B[94m"
const string
brightBlue color
brightMagenta "\x1B[95m"
const string
brightMagenta color
brightCyan "\x1B[96m"
const string
brightCyan color
brightWhite "\x1B[97m"
const string
brightWhite color
resetColor "\x1B[0m"
const string
ANSI escape code to reset all color formatting back to terminal defaults