9 lines
198 B
C#
9 lines
198 B
C#
namespace BadBuilder.Formatter
|
|
{
|
|
static class Constants
|
|
{
|
|
internal const string ORANGE = "\u001b[38;2;255;114;0m";
|
|
|
|
internal const string ANSI_RESET = "\u001b[0m";
|
|
}
|
|
} |