16 lines
314 B
C#
16 lines
314 B
C#
|
|
namespace Dungeoneer {
|
|
|
|
public static class Format {
|
|
|
|
public const string Reset = "\x1b[0m";
|
|
|
|
public const string Black = "\x1b[30m";
|
|
public const string Red = "\x1b[31m";
|
|
public const string Green = "\x1b[32m";
|
|
public const string Yellow = "\x1b[33m";
|
|
public const string Blue = "\x1b[34m";
|
|
}
|
|
|
|
}
|
|
|