---
title: "Feature: #89507 - Add description for TCA palettes"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-89507"
source: "Changelog/11.3/Feature-89507-AddDescriptionForTCAPalettes.rst"
typo3-version: "11.3"
typo3-major: 11
type: "feature"
issue: 89507
forge: "https://forge.typo3.org/issues/89507"
tags: ["Backend", "TCA", "ext:backend"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Feature: #89507 - Add description for TCA palettes {#feature-89507}

See [forge#89507](https://forge.typo3.org/issues/89507)

## Description {#description}

A new TCA property `description` on palettes entry level has been
introduced. If provided, the FormEngine will render its value below the
palette label, similar to the TCA field description. The value data
type is the same as for the palette label: a localized string. This
additional help text can therefore be used to clarify some field
usages directly in the UI.

> [!NOTE]
> In contrast to the palette label, the description property can not
> be overwritten on a record type basis.

Example usage:

```php
'types' => [
    '0' => [
        'showitem' => '
            --div--;palette,
                --palette--;;palette_1,
        '
    ]
],

'palettes' => [
    'palette_1' => [
        'label' => 'palette_1',
        'description' => 'palette_1_description',
        'showitem' => 'palette_field_1, palette_field_2, palette_field_3',
    ],
],
```

## Impact {#impact}

Integrators now have the ability to add additional information
to TCA palettes, supporting editors on their daily work.
