# CameraColorSpace

`import { CameraColorSpace } from "destack:device/binding";`

Camera color space.

```ds title="CameraColorSpace"
export enum CameraColorSpace {
    Unknown = 0,
    Srgb = 1,
    Bt601 = 2,
    Bt709 = 3,
    Bt2020 = 4,
}
```

[language/library/src/device/binding/camera.ds:41:52](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/camera.ds#L41-L52)

## Variants

### `Unknown = 0`

Host did not report color-space information.

### `Srgb = 1`

sRGB color space.

### `Bt601 = 2`

ITU-R BT.601 color space.

### `Bt709 = 3`

ITU-R BT.709 color space.

### `Bt2020 = 4`

ITU-R BT.2020 color space.
