diff --git a/src/components/externaleditor.rs b/src/components/externaleditor.rs index c37c05cf..4b4e7ef3 100644 --- a/src/components/externaleditor.rs +++ b/src/components/externaleditor.rs @@ -143,7 +143,7 @@ impl DrawableComponent for ExternalEditorComponent { .border_type(BorderType::Thick) .border_style(self.theme.block(true)), ) - .style(self.theme.text_danger()), + .style(self.theme.block(true)), area, ); } diff --git a/src/ui/style.rs b/src/ui/style.rs index d09727c5..a1e59f8d 100644 --- a/src/ui/style.rs +++ b/src/ui/style.rs @@ -286,8 +286,8 @@ impl Default for Theme { commit_time: Color::LightCyan, commit_author: Color::Green, danger_fg: Color::Red, - push_gauge_bg: Color::White, - push_gauge_fg: Color::Red, + push_gauge_bg: Color::Blue, + push_gauge_fg: Color::Reset, } } }