From a24bc34b66806dfee02d653ab6ed5f9c0a58c6e6 Mon Sep 17 00:00:00 2001
From: Jon Evans <jon@craftyjon.com>
Date: Sun, 4 Apr 2021 20:33:59 -0400
Subject: [PATCH] Better colors for length tuning popup in dark mode

---
 pcbnew/router/pns_tune_status_popup.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pcbnew/router/pns_tune_status_popup.cpp b/pcbnew/router/pns_tune_status_popup.cpp
index 05c8c5ab3d..964c2a00eb 100644
--- a/pcbnew/router/pns_tune_status_popup.cpp
+++ b/pcbnew/router/pns_tune_status_popup.cpp
@@ -44,21 +44,21 @@ void PNS_TUNE_STATUS_POPUP::UpdateStatus( PNS::ROUTER* aRouter )
     {
     case PNS::MEANDER_PLACER::TUNED:
         if( l < 0.5 )
-            SetTextColor( wxColor( 0, 255, 0 ) );
+            SetTextColor( wxColor( 127, 200, 127 ) );
         else
             SetTextColor( wxColor( 0, 128, 0 ) );
 
         break;
     case PNS::MEANDER_PLACER::TOO_SHORT:
         if( l < 0.5 )
-            SetTextColor( wxColor( 255, 128, 128 ) );
+            SetTextColor( wxColor( 242, 100, 126 ) );
         else
             SetTextColor( wxColor( 128, 64, 64 ) );
 
         break;
     case PNS::MEANDER_PLACER::TOO_LONG:
         if( l < 0.5 )
-            SetTextColor( wxColor( 24, 24, 255 ) );
+            SetTextColor( wxColor( 66, 184, 235 ) );
         else
             SetTextColor( wxColor( 19, 19, 195 ) );