From 4b1111a0a344e8d34f23de93c65cfe6f3dbcce11 Mon Sep 17 00:00:00 2001 From: stopflock Date: Wed, 8 Oct 2025 22:40:12 -0500 Subject: [PATCH] node colors --- lib/dev_config.dart | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/dev_config.dart b/lib/dev_config.dart index 1cd92d3..9bab540 100644 --- a/lib/dev_config.dart +++ b/lib/dev_config.dart @@ -86,12 +86,12 @@ const int kAbsoluteMaxTileCount = 50000; const int kAbsoluteMaxZoom = 23; // Node icon configuration -const double kNodeIconDiameter = 20.0; -const double kNodeRingThickness = 4.0; +const double kNodeIconDiameter = 18.0; +const double kNodeRingThickness = 3.0; const double kNodeDotOpacity = 0.4; // Opacity for the grey dot interior -const Color kNodeRingColorReal = Color(0xC43F55F3); // Real nodes from OSM - blue -const Color kNodeRingColorMock = Color(0xC4FFFFFF); // Add node mock point - white -const Color kNodeRingColorPending = Color(0xC49C27B0); // Submitted/pending nodes - purple -const Color kNodeRingColorEditing = Color(0xC4FF9800); // Node being edited - orange -const Color kNodeRingColorPendingEdit = Color(0xC4757575); // Original node with pending edit - grey -const Color kNodeRingColorPendingDeletion = Color(0xA4F44336); // Node pending deletion - red, slightly transparent +const Color kNodeRingColorReal = Color(0xFF3036F0); // Real nodes from OSM - blue +const Color kNodeRingColorMock = Color(0xD0FFFFFF); // Add node mock point - white +const Color kNodeRingColorPending = Color(0xD09C27B0); // Submitted/pending nodes - purple +const Color kNodeRingColorEditing = Color(0xD0FF9800); // Node being edited - orange +const Color kNodeRingColorPendingEdit = Color(0xD0757575); // Original node with pending edit - grey +const Color kNodeRingColorPendingDeletion = Color(0xC0F44336); // Node pending deletion - red, slightly transparent