# Scene.backgroundColor
Background color of the scene

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## Scene.backgroundColor property

Background color of the scene

**Signature:**

```typescript
backgroundColor: Color;
```

## Remarks

Use the background color to preview the scene in different colors. Note that it is not exported to the final animation.

## Example

```ts
// Set the background color of a scene
scene.backgroundColor = { r: 255, g: 0, b: 0 };
```
