From 01556cd07ed35454324c8dbd48dc2bf81ce27aca Mon Sep 17 00:00:00 2001 From: Tobias Zwick Date: Mon, 3 Oct 2022 00:34:08 +0200 Subject: [PATCH] workaround for https://github.com/tangrams/tangram-es/issues/2333 --- .../assets/map_theme/jawg/streetcomplete-dark-style.yaml | 5 +++-- .../assets/map_theme/jawg/streetcomplete-light-style.yaml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/src/main/assets/map_theme/jawg/streetcomplete-dark-style.yaml b/app/src/main/assets/map_theme/jawg/streetcomplete-dark-style.yaml index 532997ec80..18aa9351db 100644 --- a/app/src/main/assets/map_theme/jawg/streetcomplete-dark-style.yaml +++ b/app/src/main/assets/map_theme/jawg/streetcomplete-dark-style.yaml @@ -24,8 +24,9 @@ global: forest_color: '#403962' town_color: '#3d364e' - building_color: [0.16, 0.36, 0.36, 0.75] - building_outline_color: [0.12, 0.32, 0.32, 0.75] + # alpha is shown as double of what is specified https://github.com/tangrams/tangram-es/issues/2333 + building_color: [0.16, 0.36, 0.36, 0.4] + building_outline_color: [0.12, 0.32, 0.32, 0.4] boundary_color: '#e72' diff --git a/app/src/main/assets/map_theme/jawg/streetcomplete-light-style.yaml b/app/src/main/assets/map_theme/jawg/streetcomplete-light-style.yaml index df266d5276..447ec964b2 100644 --- a/app/src/main/assets/map_theme/jawg/streetcomplete-light-style.yaml +++ b/app/src/main/assets/map_theme/jawg/streetcomplete-light-style.yaml @@ -18,8 +18,9 @@ global: forest_color: '#a8c884' town_color: '#f3dacd' - building_color: rgba(204, 214, 238, .75) - building_outline_color: rgba(185, 195, 217, .75) + # alpha is shown as double of what is specified https://github.com/tangrams/tangram-es/issues/2333 + building_color: rgba(204, 214, 238, 0.4) + building_outline_color: rgba(185, 195, 217, 0.4) boundary_color: '#f3c'