interface WorkspaceThemePaletteProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnWorkspacePropsMixin.WorkspaceThemePaletteProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnWorkspacePropsMixin_WorkspaceThemePaletteProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnWorkspacePropsMixin.WorkspaceThemePaletteProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnWorkspacePropsMixin.WorkspaceThemePaletteProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnWorkspacePropsMixin » WorkspaceThemePaletteProperty |
Contains color palette configuration for different areas of a workspace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const workspaceThemePaletteProperty: connect_mixins.CfnWorkspacePropsMixin.WorkspaceThemePaletteProperty = {
canvas: {
activeBackground: 'activeBackground',
containerBackground: 'containerBackground',
pageBackground: 'pageBackground',
},
header: {
background: 'background',
invertActionsColors: false,
text: 'text',
textHover: 'textHover',
},
navigation: {
background: 'background',
invertActionsColors: false,
text: 'text',
textActive: 'textActive',
textBackgroundActive: 'textBackgroundActive',
textBackgroundHover: 'textBackgroundHover',
textHover: 'textHover',
},
primary: {
active: 'active',
contrastText: 'contrastText',
default: 'default',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| canvas? | IResolvable | Palette | The color configuration for the canvas area. |
| header? | IResolvable | Palette | The color configuration for the header area. |
| navigation? | IResolvable | Palette | The color configuration for the navigation area. |
| primary? | IResolvable | Palette | The primary color configuration used throughout the workspace. |
canvas?
Type:
IResolvable | Palette
(optional)
The color configuration for the canvas area.
header?
Type:
IResolvable | Palette
(optional)
The color configuration for the header area.
navigation?
Type:
IResolvable | Palette
(optional)
The color configuration for the navigation area.
primary?
Type:
IResolvable | Palette
(optional)
The primary color configuration used throughout the workspace.

.NET
Go
Java
Python
TypeScript