From 244bda89271ddd976d41f711bf796ea2ac271882 Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Sun, 6 Nov 2022 18:03:59 +0100 Subject: [PATCH] workaround for https://github.com/tangrams/tangram-es/issues/2333 --- streetcomplete-dark-style.yaml | 5 +++-- streetcomplete-light-style.yaml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/streetcomplete-dark-style.yaml b/streetcomplete-dark-style.yaml index 0328375..a0b6da7 100644 --- a/streetcomplete-dark-style.yaml +++ b/streetcomplete-dark-style.yaml @@ -32,8 +32,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/streetcomplete-light-style.yaml b/streetcomplete-light-style.yaml index ccde0f7..230716b 100644 --- a/streetcomplete-light-style.yaml +++ b/streetcomplete-light-style.yaml @@ -26,8 +26,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'