From 4e1928866ea31a176e9d0ec9ae30ca97d719be1d Mon Sep 17 00:00:00 2001 From: ChristianVisintin Date: Mon, 30 Nov 2020 21:01:54 +0100 Subject: [PATCH] Local explorer color changed to Yellow, since barely visible on some terminals (such as windows dos) --- src/ui/activities/filetransfer_activity.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/activities/filetransfer_activity.rs b/src/ui/activities/filetransfer_activity.rs index cdbc1fe..3065968 100644 --- a/src/ui/activities/filetransfer_activity.rs +++ b/src/ui/activities/filetransfer_activity.rs @@ -1873,7 +1873,7 @@ impl FileTransferActivity { .borders(Borders::ALL) .border_style(match self.input_field { InputField::Explorer => match self.tab { - FileExplorerTab::Local => Style::default().fg(Color::LightYellow), + FileExplorerTab::Local => Style::default().fg(Color::Yellow), _ => Style::default(), }, _ => Style::default(), @@ -1883,7 +1883,7 @@ impl FileTransferActivity { .start_corner(Corner::TopLeft) .highlight_style( Style::default() - .fg(Color::LightYellow) + .fg(Color::Yellow) .add_modifier(Modifier::BOLD), ) }