Interface CfnTheme.UIColorPaletteProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTheme.UIColorPaletteProperty.Jsii$Proxy
- Enclosing class:
CfnTheme
@Stability(Stable)
public static interface CfnTheme.UIColorPaletteProperty
extends software.amazon.jsii.JsiiSerializable
The theme colors that apply to UI and to charts, excluding data colors.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTheme.UIColorPaletteProperty
static final class
An implementation forCfnTheme.UIColorPaletteProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
This color is that applies to selected states and buttons.default String
The foreground color that applies to any text or other elements that appear over the accent color.default String
The color that applies to error messages.default String
The foreground color that applies to any text or other elements that appear over the error color.default String
The color that applies to the names of fields that are identified as dimensions.default String
The foreground color that applies to any text or other elements that appear over the dimension color.default String
The color that applies to the names of fields that are identified as measures.default String
The foreground color that applies to any text or other elements that appear over the measure color.default String
The background color that applies to visuals and other high emphasis UI.default String
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
The background color that applies to the sheet background and sheet controls.default String
The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background.default String
The color that applies to success messages, for example the check mark for a successful download.default String
The foreground color that applies to any text or other elements that appear over the success color.default String
This color that applies to warning and informational messages.default String
The foreground color that applies to any text or other elements that appear over the warning color.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccent
This color is that applies to selected states and buttons. -
getAccentForeground
The foreground color that applies to any text or other elements that appear over the accent color. -
getDanger
The color that applies to error messages. -
getDangerForeground
The foreground color that applies to any text or other elements that appear over the error color. -
getDimension
The color that applies to the names of fields that are identified as dimensions. -
getDimensionForeground
The foreground color that applies to any text or other elements that appear over the dimension color. -
getMeasure
The color that applies to the names of fields that are identified as measures. -
getMeasureForeground
The foreground color that applies to any text or other elements that appear over the measure color. -
getPrimaryBackground
The background color that applies to visuals and other high emphasis UI. -
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. -
getSecondaryBackground
The background color that applies to the sheet background and sheet controls. -
getSecondaryForeground
The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background. -
getSuccess
The color that applies to success messages, for example the check mark for a successful download. -
getSuccessForeground
The foreground color that applies to any text or other elements that appear over the success color. -
getWarning
This color that applies to warning and informational messages. -
getWarningForeground
The foreground color that applies to any text or other elements that appear over the warning color. -
builder
-