💐 | Simple ANSI colors for .NET
using AnsiColors;
using System;
namespace MyNamespace
{
public class Program
{
public static void Main(string[] args)
{
var colors = new AnsiColors();
Console.WriteLine($"Red: {colors.GetColor(AnsiColor.Red, "test")}");
}
}
}
AnsiColors is released under the MIT License. Read here for more information.