//! `serde` compatible version of the tooltip theme.
useserde::{ Deserialize, Serialize };#[derive(Clone, Debug, Deserialize, Serialize)]pubstructTooltip{/// Key to the background color.
pubbackground: String,
/// Key to the text color.
pubtext: String,
/// Key to the border definition.
pubborder: String,
}