commit 800fb920a284d2f422ac454d1b1a10d41697ade2
parent c07276e5d0982af922300f2613769cad7bb91049
Author: William Casarin <jb55@jb55.com>
Date: Fri, 29 Nov 2024 11:37:14 -0800
ui: make notedeck alpha text gray instead of purple
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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)
})