Example #1
0
 public static string HslToAnsi(HSL hsl)
 {
     var(r, g, b) = hsl.HslToRgb();
     return($"{FORE}{SC}{r}{SC}{g}{SC}{b}");
 }