diff --git a/crates/editor2/src/element.rs b/crates/editor2/src/element.rs index a6d4bc20b157d4f80a816d5dc78eb7980277cdc2..20012ae41d29ce83ba607252e83014b4b2f121da 100644 --- a/crates/editor2/src/element.rs +++ b/crates/editor2/src/element.rs @@ -939,11 +939,11 @@ impl EditorElement { cx, |fold_element_state, cx| { if fold_element_state.is_active() { - gpui::blue() + cx.theme().colors().ghost_element_active } else if fold_bounds.contains(&cx.mouse_position()) { - gpui::black() + cx.theme().colors().ghost_element_hover } else { - gpui::red() + cx.theme().colors().ghost_element_background } }, )