Generate color based on the given string. C# port of ColorHash Javascript Library.
Debug.WriteLine($"ColorHash > Hello World");
var colorHash = new ColorHash();
//HSL (return HSL object)
var hsl = colorHash.Hsl("Hello World");
Debug.WriteLine($" H = {hsl.H} | S = {hsl.S} | L = {hsl.L}");
// H = 225 | S = 0,35 | L = 0,65
//RGB (return System.Drawing.Color object)
var color = colorHash.Rgb("Hello World");
Debug.WriteLine($" R= {color.R} | G = {color.G} | B = {color.B}");
// R= 135 | G = 150 | B = 197
//Hex (return string)
var hex = colorHash.Hex("Hello World");
Debug.WriteLine($" hex = {hex}");
// hex = 8796C5