Skip to content

Commit

Permalink
Adjust tile label colors of the map view
Browse files Browse the repository at this point in the history
Use the slighly brighter label colors from PNG export also for the map
editor view.
  • Loading branch information
t-rapp committed Dec 10, 2023
1 parent 5af1f2d commit 0262365
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/view/tile.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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%);
}

0 comments on commit 0262365

Please sign in to comment.