feat: Traceroute map visualisation (#4002)

This commit is contained in:
Jord 2025-12-16 16:53:28 +00:00 committed by GitHub
parent 24f40b2005
commit 3dbc5108c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 917 additions and 60 deletions

View file

@ -27,6 +27,13 @@ val MeshtasticAlt = Color(0xFF2C2D3C)
val HyperlinkBlue = Color(0xFF43C3B0)
val AnnotationColor = Color(0xFF039BE5)
object TracerouteColors {
// High-contrast pair that stays legible on light/dark tiles and for most color-blind users.
// Use partial alpha so polylines dont overpower markers/tiles.
val OutgoingRoute = Color(0xCCE86A00) // orange @ ~80% opacity
val ReturnRoute = Color(0xCC0081C7) // cyan @ ~80% opacity
}
object IAQColors {
val IAQExcellent = Color(0xFF00E400)
val IAQGood = Color(0xFF92D050)