Use more delicate colours in planning layer.

This commit is contained in:
Mateusz Konieczny 2022-08-29 17:21:04 +02:00
parent d2d54e6c94
commit fa71dae61f
2 changed files with 8 additions and 8 deletions

View File

@ -316,19 +316,19 @@
<Style name="planning_applications_status">
<Rule>
<Filter>[status] = "Submitted"</Filter>
<PolygonSymbolizer fill="#00ffff"/>
<PolygonSymbolizer fill="#53f5dd"/>
</Rule>
<Rule>
<Filter>[status] = "Approved"</Filter>
<PolygonSymbolizer fill="#00ff00"/>
<PolygonSymbolizer fill="#16cf15"/>
</Rule>
<Rule>
<Filter>[status] = "Appeal In Progress"</Filter>
<PolygonSymbolizer fill="#ffff00"/>
<PolygonSymbolizer fill="#fff200"/>
</Rule>
<Rule>
<Filter>[status] = "Refused"</Filter>
<PolygonSymbolizer fill="#ff0000"/>
<PolygonSymbolizer fill="#e31d23"/>
</Rule>
<Rule>
<Filter>[status] = "Withdrawn"</Filter>

View File

@ -173,10 +173,10 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
legend: {
title: 'Planning applications',
elements: [
{ color: '#00ffff', text: 'Submitted' },
{ color: '#00ff00', text: 'Approved' },
{ color: '#ffff00', text: 'Appeal In Progress' },
{ color: '#ff0000', text: 'Refused' },
{ color: '#53f5dd', text: 'Submitted' },
{ color: '#16cf15', text: 'Approved' },
{ color: '#fff200', text: 'Appeal In Progress' },
{ color: '#e31d23', text: 'Refused' },
{ color: '#999999', text: 'Withdrawn' },
]
}