[][src]Struct rusoto_quicksight::UIColorPalette

pub struct UIColorPalette {
    pub accent: Option<String>,
    pub accent_foreground: Option<String>,
    pub danger: Option<String>,
    pub danger_foreground: Option<String>,
    pub dimension: Option<String>,
    pub dimension_foreground: Option<String>,
    pub measure: Option<String>,
    pub measure_foreground: Option<String>,
    pub primary_background: Option<String>,
    pub primary_foreground: Option<String>,
    pub secondary_background: Option<String>,
    pub secondary_foreground: Option<String>,
    pub success: Option<String>,
    pub success_foreground: Option<String>,
    pub warning: Option<String>,
    pub warning_foreground: Option<String>,
}

The theme colors that apply to UI and to charts, excluding data colors. The colors description is a hexidecimal 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.

Fields

accent: Option<String>

This color is that applies to selected states and buttons.

accent_foreground: Option<String>

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

danger: Option<String>

The color that applies to error messages.

danger_foreground: Option<String>

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

dimension: Option<String>

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

dimension_foreground: Option<String>

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

measure: Option<String>

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

measure_foreground: Option<String>

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

primary_background: Option<String>

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

primary_foreground: Option<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.

secondary_background: Option<String>

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

secondary_foreground: Option<String>

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

success: Option<String>

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

success_foreground: Option<String>

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

warning: Option<String>

This color that applies to warning and informational messages.

warning_foreground: Option<String>

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

Trait Implementations

impl Clone for UIColorPalette[src]

impl Debug for UIColorPalette[src]

impl Default for UIColorPalette[src]

impl<'de> Deserialize<'de> for UIColorPalette[src]

impl PartialEq<UIColorPalette> for UIColorPalette[src]

impl Serialize for UIColorPalette[src]

impl StructuralPartialEq for UIColorPalette[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.