From 229b5aa8f79976520be4883bfb01859f5e821e36 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 20 Dec 2023 10:57:15 -0500 Subject: [PATCH] Style links in terminal (#3736) This PR styles links in the terminal using the colors from the theme. Release Notes: - N/A --- crates/terminal_view2/src/terminal_element.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/terminal_view2/src/terminal_element.rs b/crates/terminal_view2/src/terminal_element.rs index 07910896f3..f30c1cf1bc 100644 --- a/crates/terminal_view2/src/terminal_element.rs +++ b/crates/terminal_view2/src/terminal_element.rs @@ -395,13 +395,13 @@ impl TerminalElement { let theme = cx.theme().clone(); let link_style = HighlightStyle { - color: Some(gpui::blue()), + color: Some(theme.colors().link_text_hover), font_weight: None, font_style: None, background_color: None, underline: Some(UnderlineStyle { thickness: px(1.0), - color: Some(gpui::red()), + color: Some(theme.colors().link_text_hover), wavy: false, }), fade_out: None,