Table of Contents

Class RGBA

Namespace
OpenQA.Selenium.DevTools.V146.DOM
Assembly
Selenium.WebDriver.dll

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

double?

B

The blue component, in the [0-255] range.

[JsonPropertyName("b")]
public long B { get; set; }

Property Value

long

G

The green component, in the [0-255] range.

[JsonPropertyName("g")]
public long G { get; set; }

Property Value

long

R

The red component, in the [0-255] range.

[JsonPropertyName("r")]
public long R { get; set; }

Property Value

long