diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 7cdd587db48de1f03bf54949c3bfbe7870a07073..2577591d3f5acfa2c351cd6aa89c9320e90db6c3 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -8420,8 +8420,14 @@ impl Editor { (true, true) => ui::IconName::DebugDisabledLogBreakpoint, }; + let color = cx.theme().colors(); + let color = if is_phantom { - Color::Hint + if collides_with_existing { + Color::Custom(color.debugger_accent.blend(color.text.opacity(0.6))) + } else { + Color::Hint + } } else if is_rejected { Color::Disabled } else {