There is an issue with GraphvizColor. The ARGB values are not rendered correctly due to the bug in the following code.
public byte A { get { return this.a; } }
public byte R { get { return this.a; } }
public byte G { get { return this.a; } }
public byte B { get { return this.a; } }
All the ARGB always returns the this.a.
public byte A { get { return this.a; } }
public byte R { get { return this.a; } }
public byte G { get { return this.a; } }
public byte B { get { return this.a; } }
All the ARGB always returns the this.a.