Added terminal colours for logging

This commit is contained in:
Alexis
2021-08-03 17:09:39 +02:00
parent 5913d3914d
commit 2a59436625

View File

@@ -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'
}