mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1006 B
1006 B
Home > puppeteer > Protocol > DOM > RGBA
Protocol.DOM.RGBA interface
A structure holding an RGBA color.
Signature:
export interface RGBA
Properties
Property | Type | Description |
---|---|---|
a | number | The alpha component, in the [0-1] range (default: 1). |
b | integer | The blue component, in the [0-255] range. |
g | integer | The green component, in the [0-255] range. |
r | integer | The red component, in the [0-255] range. |