From 02623651f8e398a5066e0a0b83fdad071b177dab Mon Sep 17 00:00:00 2001 From: Tobias Rapp Date: Sun, 10 Dec 2023 21:28:20 +0100 Subject: [PATCH] Adjust tile label colors of the map view Use the slighly brighter label colors from PNG export also for the map editor view. --- src/view/tile.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/view/tile.css b/src/view/tile.css index cb4f191..43db325 100644 --- a/src/view/tile.css +++ b/src/view/tile.css @@ -3,7 +3,7 @@ font-size: 14px; font-variant-numeric: tabular-nums; font-weight: bold; - fill: #444; + fill: hsl(0, 0%, 30%); paint-order: stroke; stroke: white; stroke-width: 2.0; @@ -17,7 +17,7 @@ font-size: 16px; font-style: italic; font-weight: bold; - fill: #444; + fill: hsl(0, 0%, 30%); paint-order: stroke; stroke: white; stroke-width: 2.0; @@ -27,11 +27,11 @@ pointer-events: none; } .danger-level-low .pacenote { - fill: #cc0; + fill: hsl(60, 100%, 42%); } .danger-level-medium .pacenote { - fill: #c80; + fill: hsl(40, 100%, 45%); } .danger-level-high .pacenote { - fill: #c20; + fill: hsl(10, 100%, 45%); }