> ## 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 - Collapsible section

> Style the expandable accordion sections used across product and content pages.

<Frame caption="Theme Editor > Collapsible section">
  <img src="https://mintcdn.com/twicecommerce/cJlH0EnJIdVT0BaS/images/theme-editor-collapsible-section.webp?fit=max&auto=format&n=cJlH0EnJIdVT0BaS&q=85&s=5ca37433533daa4da0634c36daced8a3" alt="Collapsible section settings panel in the theme editor" width="1920" height="1080" data-path="images/theme-editor-collapsible-section.webp" />
</Frame>

The Collapsible section panel controls the styling of expandable accordion blocks — for example, product description, specifications, and policy sections on a listing page. Found under **Components** in the theme editor.

## Settings

| Setting              | Type   | Default       | Description                                                                        |
| -------------------- | ------ | ------------- | ---------------------------------------------------------------------------------- |
| Border color         | Color  | `#E4E6EB`     | Border drawn around each collapsible block.                                        |
| Corner radius        | Slider | 8 px          | How rounded the block corners are.                                                 |
| Background color     | Color  | `transparent` | Fill behind the block. Defaults to transparent so it inherits the page background. |
| Text color           | Color  | `#111826`     | Heading and primary text colour.                                                   |
| Secondary text color | Color  | `#374152`     | Supporting text colour inside the block.                                           |

## CSS variables

<CodeGroup>
  ```css CSS variables theme={null}
  :root {
    --storefront-collapsible-border-color: #E4E6EB;
    --storefront-collapsible-border-radius: 8px;
    --storefront-collapsible-background-color: transparent;
    --storefront-collapsible-text-color: #111826;
    --storefront-collapsible-secondary-text-color: #374152;
  }
  ```
</CodeGroup>

## Related

<CardGroup cols={2}>
  <Card title="Listing page" icon="tag" href="/docs/sales-channels/online-store/theme-editor/pages/listing">
    Configure the product page that uses these sections.
  </Card>

  <Card title="Colors" icon="palette" href="/docs/sales-channels/online-store/theme-editor/settings/colors">
    Define the storefront colour palette.
  </Card>
</CardGroup>
