Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UIColorPalette

import type { UIColorPalette } from "https://aws-api.deno.dev/v0.3/services/quicksight.ts?docs=full";

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.

interface UIColorPalette {
Accent?: string | null;
AccentForeground?: string | null;
Danger?: string | null;
DangerForeground?: string | null;
Dimension?: string | null;
DimensionForeground?: string | null;
Measure?: string | null;
MeasureForeground?: string | null;
PrimaryBackground?: string | null;
PrimaryForeground?: string | null;
SecondaryBackground?: string | null;
SecondaryForeground?: string | null;
Success?: string | null;
SuccessForeground?: string | null;
Warning?: string | null;
WarningForeground?: string | null;
}

§Properties

§
Accent?: string | null
[src]

This color is that applies to selected states and buttons.

§
AccentForeground?: string | null
[src]

The foreground color that applies to any text or other elements that appear over the accent color.

§
Danger?: string | null
[src]

The color that applies to error messages.

§
DangerForeground?: string | null
[src]

The foreground color that applies to any text or other elements that appear over the error color.

§
Dimension?: string | null
[src]

The color that applies to the names of fields that are identified as dimensions.

§
DimensionForeground?: string | null
[src]

The foreground color that applies to any text or other elements that appear over the dimension color.

§
Measure?: string | null
[src]

The color that applies to the names of fields that are identified as measures.

§
MeasureForeground?: string | null
[src]

The foreground color that applies to any text or other elements that appear over the measure color.

§
PrimaryBackground?: string | null
[src]

The background color that applies to visuals and other high emphasis UI.

§
PrimaryForeground?: string | null
[src]

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.

§
SecondaryBackground?: string | null
[src]

The background color that applies to the sheet background and sheet controls.

§
SecondaryForeground?: string | null
[src]

The foreground color that applies to any sheet title, sheet control text, or UI that appears over the secondary background.

§
Success?: string | null
[src]

The color that applies to success messages, for example the check mark for a successful download.

§
SuccessForeground?: string | null
[src]

The foreground color that applies to any text or other elements that appear over the success color.

§
Warning?: string | null
[src]

This color that applies to warning and informational messages.

§
WarningForeground?: string | null
[src]

The foreground color that applies to any text or other elements that appear over the warning color.