Struct cursive::theme::Theme[][src]

pub struct Theme {
    pub shadow: bool,
    pub borders: BorderStyle,
    pub palette: Palette,
}

Represents the style a Cursive application will use.

Fields

Whether views in a StackView should have shadows.

How view borders should be drawn.

What colors should be used through the application?

Trait Implementations

impl Clone for Theme
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Theme
[src]

Formats the value using the given formatter. Read more

impl Default for Theme
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Theme

impl Sync for Theme