# GpuColor

`import { GpuColor } from "destack:gpu/binding";`

RGBA clear color.

```ds title="GpuColor"
export struct GpuColor {
    r: float64;
    g: float64;
    b: float64;
    a: float64;
}
```

[language/library/src/gpu/binding/command.ds:62:71](https://github.com/destack-sh/destack/blob/main/language/library/src/gpu/binding/command.ds#L62-L71)

## Members

### `r: float64`

Red component.

### `g: float64`

Green component.

### `b: float64`

Blue component.

### `a: float64`

Alpha component.
