@Stability(value=Stable)
public static interface CfnTheme.UIColorPaletteProperty
extends software.amazon.jsii.JsiiSerializable
The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with # , for example #37BFF5. For more information, see Using Themes in Amazon QuickSight in the Amazon QuickSight User Guide.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
UIColorPaletteProperty uIColorPaletteProperty = UIColorPaletteProperty.builder()
.accent("accent")
.accentForeground("accentForeground")
.danger("danger")
.dangerForeground("dangerForeground")
.dimension("dimension")
.dimensionForeground("dimensionForeground")
.measure("measure")
.measureForeground("measureForeground")
.primaryBackground("primaryBackground")
.primaryForeground("primaryForeground")
.secondaryBackground("secondaryBackground")
.secondaryForeground("secondaryForeground")
.success("success")
.successForeground("successForeground")
.warning("warning")
.warningForeground("warningForeground")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTheme.UIColorPaletteProperty.Builder
A builder for
CfnTheme.UIColorPaletteProperty |
static class |
CfnTheme.UIColorPaletteProperty.Jsii$Proxy
An implementation for
CfnTheme.UIColorPaletteProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTheme.UIColorPaletteProperty.Builder |
builder() |
default String |
getAccent()
This color is that applies to selected states and buttons.
|
default String |
getAccentForeground()
The foreground color that applies to any text or other elements that appear over the accent color.
|
default String |
getDanger()
The color that applies to error messages.
|
default String |
getDangerForeground()
The foreground color that applies to any text or other elements that appear over the error color.
|
default String |
getDimension()
The color that applies to the names of fields that are identified as dimensions.
|
default String |
getDimensionForeground()
The foreground color that applies to any text or other elements that appear over the dimension color.
|
default String |
getMeasure()
The color that applies to the names of fields that are identified as measures.
|
default String |
getMeasureForeground()
The foreground color that applies to any text or other elements that appear over the measure color.
|
default String |
getPrimaryBackground()
The background color that applies to visuals and other high emphasis UI.
|
default String |
getPrimaryForeground()
The color of text and other foreground elements that appear over the primary background regions, such as grid lines, borders, table banding, icons, and so on.
|
default String |
getSecondaryBackground()
The background color that applies to the sheet background and sheet controls.
|
default String |
getSecondaryForeground()
The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background.
|
default String |
getSuccess()
The color that applies to success messages, for example the check mark for a successful download.
|
default String |
getSuccessForeground()
The foreground color that applies to any text or other elements that appear over the success color.
|
default String |
getWarning()
This color that applies to warning and informational messages.
|
default String |
getWarningForeground()
The foreground color that applies to any text or other elements that appear over the warning color.
|
@Stability(value=Stable) @Nullable default String getAccent()
@Stability(value=Stable) @Nullable default String getAccentForeground()
@Stability(value=Stable) @Nullable default String getDanger()
@Stability(value=Stable) @Nullable default String getDangerForeground()
@Stability(value=Stable) @Nullable default String getDimension()
@Stability(value=Stable) @Nullable default String getDimensionForeground()
@Stability(value=Stable) @Nullable default String getMeasure()
@Stability(value=Stable) @Nullable default String getMeasureForeground()
@Stability(value=Stable) @Nullable default String getPrimaryBackground()
@Stability(value=Stable) @Nullable default String getPrimaryForeground()
@Stability(value=Stable) @Nullable default String getSecondaryBackground()
@Stability(value=Stable) @Nullable default String getSecondaryForeground()
@Stability(value=Stable) @Nullable default String getSuccess()
@Stability(value=Stable) @Nullable default String getSuccessForeground()
@Stability(value=Stable) @Nullable default String getWarning()
@Stability(value=Stable) @Nullable default String getWarningForeground()
@Stability(value=Stable) static CfnTheme.UIColorPaletteProperty.Builder builder()
Copyright © 2022. All rights reserved.