marcel 0.1.1

Dynamic theme library for the iced GUI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `serde` compatible version of the container theme.



use serde::{ Deserialize, Serialize };



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

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