/// 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,
}