Skip to content

Commit ec9412a

Browse files
committed
use black color for fg on the tab titles
1 parent ec98505 commit ec9412a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/dmi.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ impl DMI {
207207
if is_focused {
208208
Span::styled(
209209
" Firmware ",
210-
Style::default().bg(Color::Yellow).fg(Color::White).bold(),
210+
Style::default().bg(Color::Yellow).fg(Color::Black).bold(),
211211
)
212212
} else {
213213
Span::from(" Firmware ").fg(Color::DarkGray)
@@ -217,7 +217,7 @@ impl DMI {
217217
if is_focused {
218218
Span::styled(
219219
" System ",
220-
Style::default().bg(Color::Yellow).fg(Color::White).bold(),
220+
Style::default().bg(Color::Yellow).fg(Color::Black).bold(),
221221
)
222222
} else {
223223
Span::from(" System ").fg(Color::DarkGray)
@@ -227,7 +227,7 @@ impl DMI {
227227
if is_focused {
228228
Span::styled(
229229
" Baseboard ",
230-
Style::default().bg(Color::Yellow).fg(Color::White).bold(),
230+
Style::default().bg(Color::Yellow).fg(Color::Black).bold(),
231231
)
232232
} else {
233233
Span::from(" Baseboard ").fg(Color::DarkGray)
@@ -237,7 +237,7 @@ impl DMI {
237237
if is_focused {
238238
Span::styled(
239239
" Chassis ",
240-
Style::default().bg(Color::Yellow).fg(Color::White).bold(),
240+
Style::default().bg(Color::Yellow).fg(Color::Black).bold(),
241241
)
242242
} else {
243243
Span::from(" Chassis ").fg(Color::DarkGray)

0 commit comments

Comments
 (0)