-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd40380
commit 17fad7e
Showing
52 changed files
with
1,330 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,53 @@ | ||
namespace HostApi; | ||
|
||
/// <summary> | ||
/// Logical colors. | ||
/// <example> | ||
/// <code> | ||
/// WriteLine("Hello !!!", Color.Highlighted); | ||
/// </code> | ||
/// </example> | ||
/// </summary> | ||
/// <seealso cref="IHost.WriteLine"/> | ||
public enum Color | ||
{ | ||
/// <summary> | ||
/// Standard text output color. | ||
/// </summary> | ||
Default, | ||
|
||
/// <summary> | ||
/// The color of the header output. | ||
/// </summary> | ||
Header, | ||
|
||
/// <summary> | ||
/// Color of trace messages. | ||
/// </summary> | ||
Trace, | ||
|
||
/// <summary> | ||
/// Color of the success messages. | ||
/// </summary> | ||
Success, | ||
|
||
/// <summary> | ||
/// Color of messages containing warnings. | ||
/// </summary> | ||
Warning, | ||
|
||
/// <summary> | ||
/// Color of messages containing errors. | ||
/// </summary> | ||
Error, | ||
|
||
/// <summary> | ||
/// Colour for details. | ||
/// </summary> | ||
Details, | ||
|
||
/// <summary> | ||
/// Colour to display important information. | ||
/// </summary> | ||
Highlighted | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.