예제 #1
0
 public static ContainerSpan StyleFailure(this string @string)
 {
     return(new ContainerSpan(
                ForegroundColorSpan.LightRed(),
                new ContentSpan(@string),
                ForegroundColorSpan.Reset()));
 }
예제 #2
0
 public static TextSpan LightRed(this string value) =>
 new ContainerSpan(ForegroundColorSpan.LightRed(),
                   new ContentSpan(value),
                   ForegroundColorSpan.Reset());