ui: make notedeck alpha text gray instead of purple

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-11-29 11:37:14 -08:00
parent c07276e5d0
commit 800fb920a2

View File

@@ -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)
})