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: