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();
- See Also:
-
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.- See Also:
-
getAccentForeground
The foreground color that applies to any text or other elements that appear over the accent color.- See Also:
-
getDanger
The color that applies to error messages.- See Also:
-
getDangerForeground
The foreground color that applies to any text or other elements that appear over the error color.- See Also:
-
getDimension
The color that applies to the names of fields that are identified as dimensions.- See Also:
-
getDimensionForeground
The foreground color that applies to any text or other elements that appear over the dimension color.- See Also:
-
getMeasure
The color that applies to the names of fields that are identified as measures.- See Also:
-
getMeasureForeground
The foreground color that applies to any text or other elements that appear over the measure color.- See Also:
-
getPrimaryBackground
The background color that applies to visuals and other high emphasis UI.- See Also:
-
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.- See Also:
-
getSecondaryBackground
The background color that applies to the sheet background and sheet controls.- See Also:
-
getSecondaryForeground
The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background.- See Also:
-
getSuccess
The color that applies to success messages, for example the check mark for a successful download.- See Also:
-
getSuccessForeground
The foreground color that applies to any text or other elements that appear over the success color.- See Also:
-
getWarning
This color that applies to warning and informational messages.- See Also:
-
getWarningForeground
The foreground color that applies to any text or other elements that appear over the warning color.- See Also:
-
builder
-