Code from GraphvizColor.cs:
```
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; } }
```
change it to:
```
public byte A { get { return this.a; } }
public byte R { get { return this.r; } }
public byte G { get { return this.g; } }
public byte B { get { return this.b; } }
```
Comments: ** Comment from web user: dpatton_london **
```
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; } }
```
change it to:
```
public byte A { get { return this.a; } }
public byte R { get { return this.r; } }
public byte G { get { return this.g; } }
public byte B { get { return this.b; } }
```
Comments: ** Comment from web user: dpatton_london **
I just got hit by this one. It's a no-brainer, any reason why it hasn't been fixed? Is anyone actively maintaining this project?