Skip to content

OpenStreetMap.org colorblind friendlier by Forc

Screenshot of OpenStreetMap.org colorblind friendlier

Details

AuthorForc

Licensehttps://spdx.org/licenses/Unlicense.html

Categoryopenstreetmap.org

Created

Updated

Code size560 B

Code checksum29e5473c

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

When you edit the map the buildings are now yellow instead of red, that's it.

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://spdx.org/licenses/Unlicense.html


}

==/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)
    }
}

Reviews

No reviews yet.