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