diff --git a/core/embed/rust/src/ui/model_tr/component/progress.rs b/core/embed/rust/src/ui/model_tr/component/progress.rs index 4b9da68f5..6b03a27ea 100644 --- a/core/embed/rust/src/ui/model_tr/component/progress.rs +++ b/core/embed/rust/src/ui/model_tr/component/progress.rs @@ -49,7 +49,7 @@ impl Progress { } pub fn with_title(mut self, title: TString<'static>) -> Self { - self.title = Some(Child::new(Label::centered(title, theme::TEXT_BOLD))); + self.title = Some(Child::new(Label::centered(title, theme::TEXT_BOLD_UPPER))); self } diff --git a/core/embed/rust/src/ui/model_tr/theme/mod.rs b/core/embed/rust/src/ui/model_tr/theme/mod.rs index 3166f57bc..1948620bd 100644 --- a/core/embed/rust/src/ui/model_tr/theme/mod.rs +++ b/core/embed/rust/src/ui/model_tr/theme/mod.rs @@ -33,6 +33,10 @@ pub const TEXT_BOLD: TextStyle = TextStyle::new(Font::BOLD, FG, BG, FG, FG) .with_page_breaking(PageBreaking::CutAndInsertEllipsisBoth) .with_ellipsis_icon(ICON_NEXT_PAGE, ELLIPSIS_ICON_MARGIN) .with_prev_page_icon(ICON_PREV_PAGE, PREV_PAGE_ICON_MARGIN); +pub const TEXT_BOLD_UPPER: TextStyle = TextStyle::new(Font::BOLD_UPPER, FG, BG, FG, FG) + .with_page_breaking(PageBreaking::CutAndInsertEllipsisBoth) + .with_ellipsis_icon(ICON_NEXT_PAGE, ELLIPSIS_ICON_MARGIN) + .with_prev_page_icon(ICON_PREV_PAGE, PREV_PAGE_ICON_MARGIN); pub const TEXT_MONO: TextStyle = TextStyle::new(Font::MONO, FG, BG, FG, FG) .with_page_breaking(PageBreaking::CutAndInsertEllipsisBoth) .with_ellipsis_icon(ICON_NEXT_PAGE, ELLIPSIS_ICON_MARGIN)