marcel 0.1.1

Dynamic theme library for the iced GUI framework
Documentation
//! `serde` compatible version of the tooltip theme.



use serde::{ Deserialize, Serialize };



#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Tooltip {
    /// Key to the background color.
    pub background: String,

    /// Key to the text color.
    pub text: String,

    /// Key to the border definition.
    pub border: String,
}