sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// PillarTheme
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct PillarTheme {
    /// Color hex code including the `#` prefix
    pub action_button_bg: String,
    /// Color hex code including the `#` prefix
    pub action_button_text: String,
    /// Color hex code including the `#` prefix
    pub bg: String,
    /// Color hex code including the `#` prefix
    pub sidebar_bg: String,
    /// Color hex code including the `#` prefix
    pub sidebar_text: String,
    /// Color hex code including the `#` prefix
    pub text: String,
}