public static interface CfnTheme.UIColorPaletteProperty
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 java.lang.String |
getAccent()
This color is that applies to selected states and buttons.
|
default java.lang.String |
getAccentForeground()
The foreground color that applies to any text or other elements that appear over the accent color.
|
default java.lang.String |
getDanger()
The color that applies to error messages.
|
default java.lang.String |
getDangerForeground()
The foreground color that applies to any text or other elements that appear over the error color.
|
default java.lang.String |
getDimension()
The color that applies to the names of fields that are identified as dimensions.
|
default java.lang.String |
getDimensionForeground()
The foreground color that applies to any text or other elements that appear over the dimension color.
|
default java.lang.String |
getMeasure()
The color that applies to the names of fields that are identified as measures.
|
default java.lang.String |
getMeasureForeground()
The foreground color that applies to any text or other elements that appear over the measure color.
|
default java.lang.String |
getPrimaryBackground()
The background color that applies to visuals and other high emphasis UI.
|
default java.lang.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 java.lang.String |
getSecondaryBackground()
The background color that applies to the sheet background and sheet controls.
|
default java.lang.String |
getSecondaryForeground()
The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background.
|
default java.lang.String |
getSuccess()
The color that applies to success messages, for example the check mark for a successful download.
|
default java.lang.String |
getSuccessForeground()
The foreground color that applies to any text or other elements that appear over the success color.
|
default java.lang.String |
getWarning()
This color that applies to warning and informational messages.
|
default java.lang.String |
getWarningForeground()
The foreground color that applies to any text or other elements that appear over the warning color.
|
default java.lang.String getAccent()
default java.lang.String getAccentForeground()
default java.lang.String getDanger()
default java.lang.String getDangerForeground()
default java.lang.String getDimension()
default java.lang.String getDimensionForeground()
default java.lang.String getMeasure()
default java.lang.String getMeasureForeground()
default java.lang.String getPrimaryBackground()
default java.lang.String getPrimaryForeground()
default java.lang.String getSecondaryBackground()
default java.lang.String getSecondaryForeground()
default java.lang.String getSuccess()
default java.lang.String getSuccessForeground()
default java.lang.String getWarning()
default java.lang.String getWarningForeground()
static CfnTheme.UIColorPaletteProperty.Builder builder()