From 2c76fdd14d2b53dfdb7aad82f57837b001367a8a Mon Sep 17 00:00:00 2001 From: jeisenbe Date: Tue, 22 Jan 2019 21:28:09 +0900 Subject: [PATCH] Change pitch outline to darken 20%, desaturate 10% @pitch This is approximately #74b9a0 Lch 70,28,168 - 15 points darker than @pitch, same chroma and hue Also changes track outline color - which is the same as @pitch in this style currently --- landcover.mss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/landcover.mss b/landcover.mss index e45f1c6d8d..f160908f93 100644 --- a/landcover.mss +++ b/landcover.mss @@ -63,7 +63,7 @@ // --- Sports --- -@pitch: #aae0cb; // also track +@pitch: #aae0cb; // Lch(85,22,168) also track @track: @pitch; @stadium: @leisure; // also sports_centre @golf_course: #b5e3b5; @@ -684,7 +684,7 @@ polygon-fill: @track; [zoom >= 15] { line-width: 0.5; - line-color: saturate(darken(@track, 30%), 20%); + line-color: desaturate(darken(@track, 20%), 10%); } [way_pixels >= 4] { polygon-gamma: 0.75; } [way_pixels >= 64] { polygon-gamma: 0.3; } @@ -694,7 +694,7 @@ polygon-fill: @pitch; [zoom >= 15] { line-width: 0.5; - line-color: saturate(darken(@pitch, 30%), 20%); + line-color: desaturate(darken(@pitch, 20%), 10%); } [way_pixels >= 4] { polygon-gamma: 0.75; } [way_pixels >= 64] { polygon-gamma: 0.3; }