class HtmlColor {
};
HtmlColor.Reset = "";
HtmlColor.Bright = "\x1b[1m";
HtmlColor.Dim = "\x1b[2m";
HtmlColor.Underscore = "\x1b[4m";
HtmlColor.Blink = "\x1b[5m";
HtmlColor.Reverse = "\x1b[7m";
HtmlColor.Hidden = "\x1b[8m";
HtmlColor.Reveal = "\x1b[28m";
HtmlColor.FgBlack = '';
HtmlColor.FgRed = '';
HtmlColor.FgGreen = '';
HtmlColor.FgYellow = '';
HtmlColor.FgBlue = '';
HtmlColor.FgMagenta = '';
HtmlColor.FgCyan = '';
HtmlColor.FgWhite = '';
HtmlColor.BgBlack = "\x1b[40m";
HtmlColor.BgRed = "\x1b[41m";
HtmlColor.BgGreen = "\x1b[42m";
HtmlColor.BgYellow = "\x1b[43m";
HtmlColor.BgBlue = "\x1b[44m";
HtmlColor.BgMagenta = "\x1b[45m";
HtmlColor.BgCyan = "\x1b[46m";
HtmlColor.BgWhite = "\x1b[47m";
module.exports = HtmlColor;