When you edit the map the buildings are now yellow instead of red, that's it.
OpenStreetMap.org colorblind friendlier by Forc
Details
AuthorForc
Licensehttps://spdx.org/licenses/Unlicense.html
Categoryopenstreetmap.org
Created
Updated
Size570 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
I don't know any CSS so it's a miracle that i was able to make this happen. You can find me on the OSM discord if got any improvements.
Source code
/* ==UserStyle==
@name OpenStreetMap.org color blind friendlier
@namespace userstyles.world
@author Forc
@description `It just makes the buildings yellow`
@version 2024-03-23-10-20
@license https://creativecommons.org/publicdomain/zero/1.0/
}
==/UserStyle== */
@-moz-document url-prefix("https://www.openstreetmap.org") {
/* Ideditor */
/*This makes the buildings yellow */
.ideditor path.fill.tag-building {
stroke: rgba(255, 255, 0, 0.3);
fill: rgba(255, 255, 95, 0.3)
}
}