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

# Saturation

> Increase or decrease color intensity with the e_saturation token.

Saturation controls how intense the colors in an image are. Raise it for vibrant, punchy color; lower it for a muted, desaturated look.

Add the `e_saturation` token to the transform segment of any delivery URL:

```bash theme={null}
https://assets.autorender.io/LOKVTtKVGb/e_saturation:30/docs/example/porsche.jpg
```

## How does it work?

`e_saturation:{level}` takes a level from **−100 to 100**. Negative values drain color toward grayscale, positive values intensify it, and `0` leaves the image unchanged. At **−100** the image is fully grayscale.

Compare levels:

<Tabs>
  <Tab title="Original">
    ```bash theme={null}
    https://assets.autorender.io/LOKVTtKVGb/docs/example/porsche.jpg
    ```

    <img src="https://assets.autorender.io/LOKVTtKVGb/docs/example/porsche.jpg" alt="Original image" class="ar-url-image" />
  </Tab>

  <Tab title="High (+30)">
    ```bash theme={null}
    https://assets.autorender.io/LOKVTtKVGb/e_saturation:30/docs/example/porsche.jpg
    ```

    <img src="https://assets.autorender.io/LOKVTtKVGb/e_saturation:30/docs/example/porsche.jpg" alt="Increased saturation" class="ar-url-image" />
  </Tab>

  <Tab title="Low (-50)">
    ```bash theme={null}
    https://assets.autorender.io/LOKVTtKVGb/e_saturation:-50/docs/example/porsche.jpg
    ```

    <img src="https://assets.autorender.io/LOKVTtKVGb/e_saturation:-50/docs/example/porsche.jpg" alt="Decreased saturation" class="ar-url-image" />
  </Tab>
</Tabs>

## When to use it

* Make colorful photos more vivid and eye-catching.
* Pull colors back for a subtle, muted aesthetic.
* Enhance product colors so they read accurately.
* Create vintage or washed-out looks with negative levels.

## How do you combine it with other effects?

Chain saturation with contrast and brightness in one comma-separated segment. We recommend levels between **20 and 40**, because higher levels push skin tones and reds toward looking artificial (e.g. `e_saturation:25`).

```bash theme={null}
https://assets.autorender.io/LOKVTtKVGb/e_saturation:25,e_contrast:20,e_brightness:10/docs/example/porsche.jpg
```

<img src="https://assets.autorender.io/LOKVTtKVGb/e_saturation:25,e_contrast:20,e_brightness:10/docs/example/porsche.jpg" alt="Saturation with contrast and brightness" class="ar-url-image" />

## Next steps

<CardGroup cols={2}>
  <Card title="Grayscale" icon="circle-half-stroke" iconType="solid" href="/docs/transformations/effects/grayscale">
    Remove color entirely with `e_grayscale`.
  </Card>

  <Card title="Contrast" icon="circle-half-stroke" iconType="solid" href="/docs/transformations/effects/contrast">
    Widen or narrow the gap between light and dark areas with `e_contrast`.
  </Card>

  <Card title="Brightness" icon="sun-bright" iconType="solid" href="/docs/transformations/effects/brightness">
    Lighten or darken the whole frame with `e_brightness`.
  </Card>

  <Card title="All effects" icon="wand-magic-sparkles" iconType="solid" href="/docs/transformations/effects/introduction">
    Browse every effect token and how they combine.
  </Card>
</CardGroup>
