Skip to content

Commit

Permalink
Visibility improvements for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
mmd-osm committed Sep 21, 2024
1 parent 40c07ec commit ea30534
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/assets/stylesheets/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -968,6 +968,9 @@ img.trace_image {

.barrier {
fill: #3f3f3f;
@include color-mode(dark) {
filter: invert(.8) hue-rotate(180deg);
}
}

.gastronomy {
Expand All @@ -989,6 +992,9 @@ img.trace_image {
.man-made,
.advertising {
fill: #666666;
@include color-mode(dark) {
filter: invert(.8) hue-rotate(180deg);
}
}

.office {
Expand All @@ -997,6 +1003,9 @@ img.trace_image {

.religious {
fill: #000000;
@include color-mode(dark) {
filter: invert(.8) hue-rotate(180deg);
}
}

.shop {
Expand All @@ -1005,6 +1014,9 @@ img.trace_image {

.traffic-light {
fill: #545454;
@include color-mode(dark) {
filter: invert(.8) hue-rotate(180deg);
}
}

.transportation,
Expand Down

0 comments on commit ea30534

Please sign in to comment.