marcel 0.1.1

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



use serde::{ Deserialize, Serialize };



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

    /// Radius of the border.
    pub radius: f32,

    /// Width of the border.
    pub width: f32,
}