From 1c858a327100a7fba91a4fa91cd195fdd295a6a6 Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 27 Jun 2026 10:51:03 -0700 Subject: [PATCH] feat(app): use theme-aware accent rings for select/play/bulk --- src/app.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app.rs b/src/app.rs index 2db0446..f321ee2 100644 --- a/src/app.rs +++ b/src/app.rs @@ -4227,21 +4227,21 @@ impl App { ui.painter().rect_stroke( rect, 4.0, - egui::Stroke::new(2.0, egui::Color32::from_rgb(120, 170, 230)), + egui::Stroke::new(2.0, self.theme_accents.accent), ); } if is_playing { ui.painter().rect_stroke( rect, 4.0, - egui::Stroke::new(2.0, egui::Color32::from_rgb(110, 200, 110)), + egui::Stroke::new(2.0, self.theme_accents.success), ); } if bulk_checked { ui.painter().rect_stroke( rect, 4.0, - egui::Stroke::new(3.0, egui::Color32::from_rgb(180, 130, 240)), + egui::Stroke::new(3.0, self.theme_accents.warning), ); } if card.watched {