diff --git a/crates/extension_cli/src/main.rs b/crates/extension_cli/src/main.rs index 4428849129..ac96cd311d 100644 --- a/crates/extension_cli/src/main.rs +++ b/crates/extension_cli/src/main.rs @@ -339,6 +339,20 @@ async fn test_themes( let theme_path = extension_path.join(relative_theme_path); let theme_family = theme::read_user_theme(&theme_path, fs.clone()).await?; log::info!("loaded theme family {}", theme_family.name); + + for theme in &theme_family.themes { + if theme + .style + .colors + .deprecated_scrollbar_thumb_background + .is_some() + { + bail!( + r#"Theme "{theme_name}" is using a deprecated style property: scrollbar_thumb.background. Use `scrollbar.thumb.background` instead."#, + theme_name = theme.name + ) + } + } } Ok(())