implement bold modifier

This commit is contained in:
🪞👃🪞 2024-10-19 00:07:17 +03:00
parent 794460b2e4
commit 581b0f5f3b
2 changed files with 23 additions and 1 deletions

View file

@ -34,7 +34,9 @@ impl Content for ArrangerStatusBar {
Self::PhrasePool => "Phrases",
Self::PhraseEditor => "Sequencer",
};
TuiStyle::bg(format!(" {label} "), Color::Rgb(150, 160, 90)).fg(Color::Rgb(0, 0, 0))
TuiStyle::bg(format!(" {label} "), Color::Rgb(150, 160, 90))
.fg(Color::Rgb(0, 0, 0))
.bold(true)
}
}
impl Content for Arrangement<Tui> {