Style links in terminal (#3736)

Marshall Bowers created

This PR styles links in the terminal using the colors from the theme.

Release Notes:

- N/A

Change summary

crates/terminal_view2/src/terminal_element.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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,