Fix style (#454)

This commit is contained in:
Stephan Dilly 2020-12-20 17:07:32 +01:00 committed by GitHub
parent 196fe4ab43
commit 79939115af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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,
);
}

View file

@ -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,
}
}
}