-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaps.ts
87 lines (82 loc) · 2.12 KB
/
maps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
export const bold = "\u001b[1m";
export const reset = "\u001b[0m";
export enum TextColors {
black = "\u001b[30m",
brightBlack = "\u001b[30;1m",
red = "\u001b[31m",
brightRed = "\u001b[31;1m",
green = "\u001b[32m",
brightGreen = "\u001b[32;1m",
yellow = "\u001b[33m",
brightYellow = "\u001b[33;1m",
blue = "\u001b[34m",
brightBlue = "\u001b[34;1m",
magenta = "\u001b[35m",
brightMagenta = "\u001b[35;1m",
cyan = "\u001b[36m",
brightCyan = "\u001b[36;1m",
white = "\u001b[37m",
brightWhite = "\u001b[37;1m"
}
export enum BackgroundColors {
black = "\u001b[40m",
brightBlack = "\u001b[40;1m",
red = "\u001b[41m",
brightRed = "\u001b[41;1m",
green = "\u001b[42m",
brightGreen = "\u001b[42;1m",
yellow = "\u001b[43m",
brightYellow = "\u001b[43;1m",
blue = "\u001b[44m",
brightBlue = "\u001b[44;1m",
magenta = "\u001b[45m",
brightMagenta = "\u001b[45;1m",
cyan = "\u001b[46m",
brightCyan = "\u001b[46;1m",
white = "\u001b[47m",
brightWhite = "\u001b[47;1m"
}
export const text = {
black: "\u001b[30m",
brightBlack: "\u001b[30;1m",
red: "\u001b[31m",
brightRed: "\u001b[31;1m",
green: "\u001b[32m",
brightGreen: "\u001b[32;1m",
yellow: "\u001b[33m",
brightYellow: "\u001b[33;1m",
blue: "\u001b[34m",
brightBlue: "\u001b[34;1m",
magenta: "\u001b[35m",
brightMagenta: "\u001b[35;1m",
cyan: "\u001b[36m",
brightCyan: "\u001b[36;1m",
white: "\u001b[37m",
brightWhite: "\u001b[37;1m",
};
export const background = {
black: "\u001b[40m",
brightBlack: "\u001b[40;1m",
red: "\u001b[41m",
brightRed: "\u001b[41;1m",
green: "\u001b[42m",
brightGreen: "\u001b[42;1m",
yellow: "\u001b[43m",
brightYellow: "\u001b[43;1m",
blue: "\u001b[44m",
brightBlue: "\u001b[44;1m",
magenta: "\u001b[45m",
brightMagenta: "\u001b[45;1m",
cyan: "\u001b[46m",
brightCyan: "\u001b[46;1m",
white: "\u001b[47m",
brightWhite: "\u001b[47;1m",
};
export default {
bold,
reset,
TextColors,
BackgroundColors,
text,
background
};