コード例 #1
0
 public static RichTextPointer InTeal(this RichTextPointer pointer, bool threadSafe = false)
 => pointer.Colorize(new Color32(0, 128, 128, 255), threadSafe);
コード例 #2
0
 public static RichTextPointer InYellow(this RichTextPointer pointer, bool threadSafe = false)
 => pointer.Colorize(new Color32(255, 0, 255, 255), threadSafe);
コード例 #3
0
 public static RichTextPointer InSilver(this RichTextPointer pointer, bool threadSafe = false)
 => pointer.Colorize(new Color32(192, 192, 192, 255), threadSafe);
コード例 #4
0
 public static RichTextPointer InOchre(this RichTextPointer pointer, bool threadSafe = false)
 => pointer.Colorize(new Color32(204, 119, 34, 255), threadSafe);
コード例 #5
0
 public static RichTextPointer InMustard(this RichTextPointer pointer, bool threadSafe = false)
 => pointer.Colorize(new Color32(255, 219, 88, 255), threadSafe);
コード例 #6
0
 public static RichTextPointer InMaroon(this RichTextPointer pointer, bool threadSafe = false)
 => pointer.Colorize(new Color32(128, 0, 0, 255), threadSafe);
コード例 #7
0
 public static RichTextPointer InBrown(this RichTextPointer pointer, bool threadSafe = false)
 => pointer.Colorize(new Color32(150, 75, 0, 255), threadSafe);