> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extractbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ColorScheme

Indicates the user's preferred color scheme for the web page, often used to switch between light and dark modes. This can be emulated to test different theme adaptations of a website.

## Definition

```graphql theme={null}
enum ColorScheme {
  NO_PREFERENCE
  LIGHT
  DARK
}
```

## Values

### `NO_PREFERENCE`

The user has not expressed a preference for a specific color scheme. The website should use its default theme.

### `LIGHT`

The user prefers a light theme, typically with dark text on a light background.

### `DARK`

The user prefers a dark theme, typically with light text on a dark background.
