notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit c572465a5d2c4440d683fa4c4efd36d1e2f4ba0d
parent d6cf2cf6f3570ef88e738ec733c9136de948817e
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 19 Dec 2025 11:00:00 -0800

messages: tweak style

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mcrates/notedeck/src/theme.rs | 2+-
Mcrates/notedeck_columns/src/ui/note/post.rs | 2+-
Mcrates/notedeck_messages/src/ui/convo_list.rs | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/crates/notedeck/src/theme.rs b/crates/notedeck/src/theme.rs @@ -119,7 +119,7 @@ pub fn desktop_dark_color_theme() -> ColorTheme { ColorTheme { // VISUALS panel_fill: DARKER_BG, - extreme_bg_color: DARK_ISH_BG, + extreme_bg_color: SEMI_DARKER_BG, text_color: Color32::WHITE, err_fg_color: RED_700, warn_fg_color: ORANGE_700, diff --git a/crates/notedeck_columns/src/ui/note/post.rs b/crates/notedeck_columns/src/ui/note/post.rs @@ -408,7 +408,7 @@ impl<'a, 'd> PostView<'a, 'd> { let mut frame = egui::Frame::default() .inner_margin(egui::Margin::same(PostView::inner_margin())) .outer_margin(egui::Margin::same(PostView::outer_margin())) - .fill(ui.visuals().extreme_bg_color) + .fill(ui.visuals().window_fill) .stroke(stroke) .corner_radius(12.0); diff --git a/crates/notedeck_messages/src/ui/convo_list.rs b/crates/notedeck_messages/src/ui/convo_list.rs @@ -161,7 +161,7 @@ pub fn render_summary( let fill = if is_narrow(ui.ctx()) { Color32::TRANSPARENT } else if selected { - visuals.selection.bg_fill + visuals.extreme_bg_color } else if summary.unread { visuals.faint_bg_color } else {