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

# Theme Editor - Availability indicator

> Style the availability status dot and its text, shared across the storefront.

<Frame caption="Theme Editor > Availability indicator">
  <img src="https://mintcdn.com/twicecommerce/R_1b45pRTajoRzbd/images/theme-editor-availability-indicator.webp?fit=max&auto=format&n=R_1b45pRTajoRzbd&q=85&s=e5595cc56c1ffb090db4f83e05e4b29d" alt="Availability indicator settings panel in the theme editor" width="1920" height="1080" data-path="images/theme-editor-availability-indicator.webp" />
</Frame>

The Availability indicator panel styles the status dot and its accompanying text. The indicator is shared: it appears inside the [pickup availability card](/docs/sales-channels/online-store/theme-editor/settings/pickup-availability) on the listing page and on the listing availability line on collection pages. Found under **Cards** in the theme editor.

## Colors

| Setting     | Default   | Description                                 |
| ----------- | --------- | ------------------------------------------- |
| Available   | `#17B26A` | Dot colour when the listing is available.   |
| Unavailable | `#D0D5DD` | Dot colour when the listing is unavailable. |
| Text        | `#374152` | Colour of the text next to the dot.         |

## CSS variables

<CodeGroup>
  ```css CSS variables theme={null}
  :root {
    --storefront-availability-indicator-available-color: #17B26A;
    --storefront-availability-indicator-unavailable-color: #D0D5DD;
    --storefront-availability-indicator-text-color: #374152;
  }
  ```
</CodeGroup>

## Related

<CardGroup cols={2}>
  <Card title="Pickup availability" icon="box" href="/docs/sales-channels/online-store/theme-editor/settings/pickup-availability">
    Style the card the indicator appears in.
  </Card>

  <Card title="Availability" icon="calendar-check" href="/docs/concepts/catalog/availability">
    How availability is determined.
  </Card>
</CardGroup>
