diff --git a/docs/designers-developers/developers/themes/theme-support.md b/docs/designers-developers/developers/themes/theme-support.md index fb1267b4534937..a6e506b1a3ac3a 100644 --- a/docs/designers-developers/developers/themes/theme-support.md +++ b/docs/designers-developers/developers/themes/theme-support.md @@ -353,3 +353,19 @@ To make the content resize and keep its aspect ratio, the `` element needs ```php add_theme_support( 'responsive-embeds' ); ``` + +## Experimental — Cover block padding + +In the Guteberg plugin 8.3, Cover blocks can provide padding controls in the editor for users. This is not avaialble by default, and requires the theme to opt in by declaring support: + +```php +add_theme_support('experimental-custom-spacing'); +``` + +## Experimental — Link color control + +In the Guteberg plugin 8.3, link color control is available to the Paragraph, Heading, Group, Columns, and Media & Text blocks. This is not avaialble by default, and requires the theme to opt in by declaring support: + +```php +add_theme_support('experimental-link-color'); +```