diff --git a/docs/content-services/directives/inherited-button.directive.md b/docs/content-services/directives/inherited-button.directive.md
index f836e4ef4c..7671115f63 100644
--- a/docs/content-services/directives/inherited-button.directive.md
+++ b/docs/content-services/directives/inherited-button.directive.md
@@ -13,7 +13,6 @@ Update the current node by adding/removing the inherited permissions.
```html
```
diff --git a/docs/core/components/datatable.component.md b/docs/core/components/datatable.component.md
index 5049053576..e21f440a8d 100644
--- a/docs/core/components/datatable.component.md
+++ b/docs/core/components/datatable.component.md
@@ -351,7 +351,6 @@ while the data for the table is loading:
diff --git a/docs/core/components/header.component.md b/docs/core/components/header.component.md
index 7a00e4c54b..5839170143 100644
--- a/docs/core/components/header.component.md
+++ b/docs/core/components/header.component.md
@@ -16,7 +16,6 @@ Reusable header for Alfresco applications.
title="title"
logo="logo.svg"
[redirectUrl]="'/home'"
- color="primary"
(clicked)=toggleMenu($event)>
```
@@ -38,7 +37,7 @@ body of the element:
| Name | Type | Default value | Description |
| ---- | ---- | ------------- | ----------- |
-| color | [`ThemePalette`](https://github.com/angular/components/blob/master/src/material/core/common-behaviors/color.ts) | | Background color for the header. It can be any hex color code or one of the Material theme colors: 'primary', 'accent' or 'warn'. |
+| backgroundColor | [`string`] | Background color for the header. It can be any hex color code or CSS variable. |
| expandedSidenav | `boolean` | true | expandedSidenav: Toggles the expanded state of the component. |
| logo | `string` | | Path to an image file for the application logo. |
| position | `string` | "start" | The side of the page that the drawer is attached to (can be 'start' or 'end') |
@@ -58,5 +57,5 @@ body of the element:
## Details
This component displays a customizable header that can be reused. Use the input properties to
-configure the left side (title, button) and the primary color of the header. The right part of the
+configure the left side (title, button) and the background color of the header. The right part of the
header can contain other components which are transcluded in the header component.
diff --git a/docs/core/components/toolbar.component.md b/docs/core/components/toolbar.component.md
index 9d5bf4e8f0..2520f8e1c9 100644
--- a/docs/core/components/toolbar.component.md
+++ b/docs/core/components/toolbar.component.md
@@ -19,7 +19,6 @@ Simple container for headers, titles, actions and breadcrumbs.
- [Properties](#properties)
- [Details](#details)
- [Dropdown menu](#dropdown-menu)
- - [Custom color](#custom-color)
- [See also](#see-also)
## Basic Usage
@@ -74,7 +73,6 @@ pushed to the right by a spacer:
| Name | Type | Default value | Description |
| ---- | ---- | ------------- | ----------- |
-| color | [`ThemePalette`](https://github.com/angular/components/blob/master/src/material/core/common-behaviors/color.ts) | | Toolbar color. Can be changed to empty value (default), `primary`, `accent` or `warn`. |
| title | `string` | "" | Toolbar title. |
## Details
@@ -116,21 +114,6 @@ when you click the menu button:

-### Custom color
-
-Besides the default color you can use 'primary', 'accent', or 'warn' values:
-
-You might also want to change colors to follow your application's color
-[theme](../../user-guide/theming.md):
-
-For example:
-
-
-
-
-
-
-
## See also
- [Toolbar Divider component](toolbar-divider.component.md)
diff --git a/docs/core/services/process-content.service.md b/docs/core/services/process-content.service.md
index 895f0b2064..1f335f490b 100644
--- a/docs/core/services/process-content.service.md
+++ b/docs/core/services/process-content.service.md
@@ -95,7 +95,7 @@ Let's say we have an upload button as follows:
```html