feat(app): use theme-aware accent rings for select/play/bulk

This commit is contained in:
Luna 2026-06-27 10:51:03 -07:00
parent 5fb8cc7036
commit 1c858a3271

View file

@ -4227,21 +4227,21 @@ impl App {
ui.painter().rect_stroke( ui.painter().rect_stroke(
rect, rect,
4.0, 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 { if is_playing {
ui.painter().rect_stroke( ui.painter().rect_stroke(
rect, rect,
4.0, 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 { if bulk_checked {
ui.painter().rect_stroke( ui.painter().rect_stroke(
rect, rect,
4.0, 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 { if card.watched {