From 800fb920a284d2f422ac454d1b1a10d41697ade2 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 29 Nov 2024 11:37:14 -0800 Subject: [PATCH] ui: make notedeck alpha text gray instead of purple Signed-off-by: William Casarin --- src/ui/side_panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/side_panel.rs b/src/ui/side_panel.rs index d7a8c42..f39825d 100644 --- a/src/ui/side_panel.rs +++ b/src/ui/side_panel.rs @@ -427,13 +427,13 @@ fn milestone_name() -> impl Widget { let font = egui::FontId::new( crate::app_style::get_font_size( ui.ctx(), - &crate::app_style::NotedeckTextStyle::Small, + &crate::app_style::NotedeckTextStyle::Tiny, ), egui::FontFamily::Name(crate::fonts::NamedFontFamily::Bold.as_str().into()), ); ui.add(Label::new( RichText::new("ALPHA") - .color(crate::colors::PURPLE) + .color(crate::colors::GRAY_SECONDARY) .font(font), ).selectable(false)).on_hover_text("Notedeck is an alpha product. Expect bugs and contact us when you run into issues.").on_hover_cursor(egui::CursorIcon::Help) })