From c9e1da694af001261f1ac818528d61f042dcf5fc Mon Sep 17 00:00:00 2001 From: TheNexter Date: Tue, 13 Jan 2026 18:33:51 +0100 Subject: [PATCH] Switch from blue to white due to night mode on screen that made impossible to see blue line on dark background --- src/ui/graph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/graph.rs b/src/ui/graph.rs index c346791..44fb32e 100644 --- a/src/ui/graph.rs +++ b/src/ui/graph.rs @@ -53,7 +53,7 @@ impl Port { }; let color = media_type.map_or(egui::Color32::GRAY, |media_type| match *media_type { - MediaType::Audio => egui::Color32::BLUE, + MediaType::Audio => egui::Color32::WHITE, MediaType::Video => egui::Color32::YELLOW, MediaType::Application => egui::Color32::RED, MediaType::Binary => egui::Color32::GREEN,