diff --git a/src/common/enums/VSColors.ts b/src/common/enums/VSColors.ts new file mode 100644 index 0000000..16b39a5 --- /dev/null +++ b/src/common/enums/VSColors.ts @@ -0,0 +1,7 @@ +export enum VSColors { + red = '\x1b[31m%s\x1b[0m', + yellow = '\x1b[33m%s\x1b[0m', + green = '\x1b[32m%s\x1b[0m', + cyan = '\x1b[36m%s\x1b[0m', + blue = '\x1b[34m%s\x1b[0m' +}