UNPKG

kist

Version:

Package Pipeline Processor

24 lines (23 loc) 642 B
/** * LoggerStyles defines terminal color codes for text and background styling. * These styles are used to format log messages with colors and effects. */ export declare enum LoggerStyles { Reset = "\u001B[0m", Bold = "\u001B[1m", Dim = "\u001B[2m", Red = "\u001B[31m", Green = "\u001B[32m", Yellow = "\u001B[33m", Blue = "\u001B[34m", Magenta = "\u001B[35m", Cyan = "\u001B[36m", Gray = "\u001B[90m", BgRed = "\u001B[41m", BgGreen = "\u001B[42m", BgYellow = "\u001B[43m", BgBlue = "\u001B[44m", BgMagenta = "\u001B[45m", BgCyan = "\u001B[46m", BgGray = "\u001B[100m" }