Brighter colours

Concerned that the darker colours were not bright enough to stand out against the black background
This commit is contained in:
Mike Simpson 2023-07-26 15:39:13 +01:00
parent 30300a76cb
commit 348971257f
2 changed files with 12 additions and 12 deletions

View File

@ -976,15 +976,15 @@
<Style name="typology_classification"> <Style name="typology_classification">
<Rule> <Rule>
<Filter>[typology_classification] = "Low-rise: Not part of a group/cluster (1-3 core floors- excluding extensions)"</Filter> <Filter>[typology_classification] = "Low-rise: Not part of a group/cluster (1-3 core floors- excluding extensions)"</Filter>
<PolygonSymbolizer fill="#002C7C" /> <PolygonSymbolizer fill="#0311AB" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "Low-rise: Part of dense block/row/terrace"</Filter> <Filter>[typology_classification] = "Low-rise: Part of dense block/row/terrace"</Filter>
<PolygonSymbolizer fill="#006FA4" /> <PolygonSymbolizer fill="#3845D4" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "Low-rise: Part of group of widely spaced blocks (includes semi-detached houses)"</Filter> <Filter>[typology_classification] = "Low-rise: Part of group of widely spaced blocks (includes semi-detached houses)"</Filter>
<PolygonSymbolizer fill="#00B2CB" /> <PolygonSymbolizer fill="#6D79FD" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "Mid-rise: Not part of a group/cluster (4-7 core floors)"</Filter> <Filter>[typology_classification] = "Mid-rise: Not part of a group/cluster (4-7 core floors)"</Filter>
@ -1000,15 +1000,15 @@
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "High rise: Not part of a group/cluster"</Filter> <Filter>[typology_classification] = "High rise: Not part of a group/cluster"</Filter>
<PolygonSymbolizer fill="#580C04" /> <PolygonSymbolizer fill="#AB1303" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "High-rise: Part of group of densely spaced blocks (8 + core floors)"</Filter> <Filter>[typology_classification] = "High-rise: Part of group of densely spaced blocks (8 + core floors)"</Filter>
<PolygonSymbolizer fill="#AA1E0E" /> <PolygonSymbolizer fill="#D43A29" />
</Rule> </Rule>
<Rule> <Rule>
<Filter>[typology_classification] = "High-rise: Part of group of widely spaced blocks"</Filter> <Filter>[typology_classification] = "High-rise: Part of group of widely spaced blocks"</Filter>
<PolygonSymbolizer fill="#FB2F18" /> <PolygonSymbolizer fill="#FC604F" />
</Rule> </Rule>
<Rule> <Rule>

View File

@ -305,15 +305,15 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
legend: { legend: {
title: 'Typology classification', title: 'Typology classification',
elements: [ elements: [
{ color: '#002C7C', text: '1-3 storeys: Detached' }, { color: '#0311AB', text: '1-3 storeys: Detached' },
{ color: '#006FA4', text: '1-3 storeys: Tightly grouped' }, { color: '#3845D4', text: '1-3 storeys: Tightly grouped' },
{ color: '#00B2CB', text: '1-3 storeys: Loosely grouped' }, { color: '#6D79FD', text: '1-3 storeys: Loosely grouped' },
{ color: '#FF5D00', text: '4-7 storeys: Detached' }, { color: '#FF5D00', text: '4-7 storeys: Detached' },
{ color: '#FF8000', text: '4-7 storeys: Tightly grouped' }, { color: '#FF8000', text: '4-7 storeys: Tightly grouped' },
{ color: '#FFA200', text: '4-7 storeys: Loosely grouped' }, { color: '#FFA200', text: '4-7 storeys: Loosely grouped' },
{ color: '#580C04', text: '8+ storeys: Detached' }, { color: '#AB1303', text: '8+ storeys: Detached' },
{ color: '#AA1E0E', text: '8+ storeys: Tightly grouped' }, { color: '#D43A29', text: '8+ storeys: Tightly grouped' },
{ color: '#FB2F18', text: '8+ storeys: Loosely grouped' }, { color: '#FC604F', text: '8+ storeys: Loosely grouped' },
] ]
} }
}, },