-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBg.cs
60 lines (43 loc) · 1.49 KB
/
Bg.cs
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
namespace Meep.Tech.Text {
public static partial class ANSI {
/// <summary>
/// ANSI escape codes for background colors.
/// </summary>
public enum Bg {
/// <inheritdoc cref="Color.Reset"/>
Reset = ResetCode,
/// <inheritdoc cref="Color.Reset"/>
Black = 40,
/// <inheritdoc cref="Color.Reset"/>
Red = 41,
/// <inheritdoc cref="Color.Reset"/>
Green = 42,
/// <inheritdoc cref="Color.Reset"/>
Yellow = 43,
/// <inheritdoc cref="Color.Reset"/>
Blue = 44,
/// <inheritdoc cref="Color.Reset"/>
Magenta = 45,
/// <inheritdoc cref="Color.Reset"/>
Cyan = 46,
/// <inheritdoc cref="Color.Reset"/>
White = 47,
/// <inheritdoc cref="Color.Reset"/>
BrightBlack = 100,
/// <inheritdoc cref="Color.Reset"/>
BrightRed = 101,
/// <inheritdoc cref="Color.Reset"/>
BrightGreen = 102,
/// <inheritdoc cref="Color.Reset"/>
BrightYellow = 103,
/// <inheritdoc cref="Color.Reset"/>
BrightBlue = 104,
/// <inheritdoc cref="Color.Reset"/>
BrightMagenta = 105,
/// <inheritdoc cref="Color.Reset"/>
BrightCyan = 106,
/// <inheritdoc cref="Color.Reset"/>
BrightWhite = 107,
}
}
}