Skip to content

Commit

Permalink
change fg color
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Oct 5, 2024
1 parent 4678af2 commit 5015cc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions oryx-tui/src/section/firewall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl UserInput {
Color::DarkGray
}
})
.fg(Color::White),
.fg(Color::Black),
Cell::from(self.ip.field.to_string())
.bg({
if self.focus_input == FocusedInput::Ip {
Expand All @@ -126,7 +126,7 @@ impl UserInput {
Color::DarkGray
}
})
.fg(Color::White),
.fg(Color::Black),
Cell::from(self.port.field.to_string())
.bg({
if self.focus_input == FocusedInput::Port {
Expand All @@ -135,7 +135,7 @@ impl UserInput {
Color::DarkGray
}
})
.fg(Color::White),
.fg(Color::Black),
]),
Row::new(vec![Cell::new(""), Cell::new(""), Cell::new("")]),
Row::new(vec![
Expand Down

0 comments on commit 5015cc7

Please sign in to comment.