Class RGBA
A structure holding an RGBA color.
public sealed class RGBA
- Inheritance
-
RGBA
- Inherited Members
Properties
A
The alpha component, in the [0-1] range (default: 1).
[JsonPropertyName("a")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? A { get; set; }
Property Value
B
The blue component, in the [0-255] range.
[JsonPropertyName("b")]
public long B { get; set; }
Property Value
G
The green component, in the [0-255] range.
[JsonPropertyName("g")]
public long G { get; set; }
Property Value
R
The red component, in the [0-255] range.
[JsonPropertyName("r")]
public long R { get; set; }