//! `serde` compatible version of the border theme.
useserde::{ Deserialize, Serialize };#[derive(Clone, Debug, Deserialize, Serialize)]pubstructBorder{/// Key to the border color.
pubcolor: String,
/// Radius of the border.
pubradius:f32,
/// Width of the border.
pubwidth:f32,
}