mirror of
https://github.com/Myxelium/RandomMemerBot.git
synced 2026-04-09 08:59:39 +00:00
7 lines
346 B
TypeScript
7 lines
346 B
TypeScript
export class LoggerColors {
|
|
public static readonly Green: string = "\x1b[32m%s\x1b[0m";
|
|
public static readonly Yellow: string = "\x1b[33m%s\x1b[0m";
|
|
public static readonly Cyan: string = "\x1b[36m%s\x1b[0m";
|
|
public static readonly Red: string = "\x1b[31m%s\x1b[0m";
|
|
public static readonly Teal: string = "\x1b[35m%s\x1b[0m";
|
|
} |