chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.dom / RGBA

RGBA

data class RGBA

A structure holding an RGBA color.

Constructors

<init>

A structure holding an RGBA color.

RGBA(r: Int, g: Int, b: Int, a: Double? = null)

Properties

a

The alpha component, in the 0-1 range (default: 1).

val a: Double?

b

The blue component, in the 0-255 range.

val b: Int

g

The green component, in the 0-255 range.

val g: Int

r

The red component, in the 0-255 range.

val r: Int