-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEffect.cs
76 lines (61 loc) · 1.85 KB
/
Effect.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
namespace Meep.Tech.Text {
public static partial class ANSI {
/// <summary>
/// ANSI escape codes for text effects.
/// </summary>
public enum Effect {
/// <summary>
/// Used to reset the effect to the default.
/// </summary>
Reset = ResetCode,
/// <summary>
/// Used to make text bold.
/// </summary>
Bold = 1,
/// <summary>
/// Used to make text faint.
/// </summary>
Faint = 2,
/// <summary>
/// Used to make text italic.
/// </summary>
Italic = 3,
/// <summary>
/// Used to make text underlined.
/// </summary>
Underline = 4,
/// <summary>
/// Used to make text blink slowly.
/// </summary>
Blink = 5,
/// <summary>
/// Used to make text blink rapidly.
/// </summary>
FastBlink = 6,
/// <summary>
/// Used to reverse the foreground and background colors.
/// </summary>
Reverse = 7,
/// <summary>
/// Used to conceal text.
/// </summary>
Conceal = 8,
/// <summary>
/// Used to cross out text.
/// </summary>
CrossedOut = 9,
/// <summary>
/// Used to make text bold and underlined.
/// </summary>
Framed = 51,
/// <summary>
/// Used to make text bold and overlined.
/// </summary>
Encircled = 52,
/// <summary>
/// Used to make text bold, underlined, and overlined.
/// </summary>
Overlined = 53,
}
}
}