diff --git a/src/user_config.rs b/src/user_config.rs index d5ed3b36..9f4419f1 100644 --- a/src/user_config.rs +++ b/src/user_config.rs @@ -13,6 +13,8 @@ const APP_CONFIG_DIR: &str = "spotify-tui"; #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] pub struct UserTheme { + pub analysis_bar: Option, + pub analysis_bar_text: Option, pub active: Option, pub banner: Option, pub error_border: Option, @@ -381,6 +383,8 @@ impl UserConfig { }; } + to_theme_item!(analysis_bar); + to_theme_item!(analysis_bar_text); to_theme_item!(active); to_theme_item!(banner); to_theme_item!(error_border);