Skip to content

Commit

Permalink
More logical colours for arch. style
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoniecz committed Sep 25, 2024
1 parent 19cb69c commit bae59e7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
22 changes: 11 additions & 11 deletions app/map_styles/polygon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1666,47 +1666,47 @@
<Style name="typology_style_period">
<Rule>
<Filter>[typology_style_period] = "43AD-410 (Roman)"</Filter>
<PolygonSymbolizer fill="#FFF739" />
<PolygonSymbolizer fill="#dadada" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "410-1485 (Medieval)"</Filter>
<PolygonSymbolizer fill="#C5BD00" />
<PolygonSymbolizer fill="#a9a695" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1485-1603 (Tudor)"</Filter>
<PolygonSymbolizer fill="#FF9A39" />
<PolygonSymbolizer fill="#d0c291" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1603-1714 (Stuart)"</Filter>
<PolygonSymbolizer fill="#C56000" />
<PolygonSymbolizer fill="#6d8a51" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1714-1837 (Georgian)"</Filter>
<PolygonSymbolizer fill="#EA8072" />
<PolygonSymbolizer fill="#acc98f" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1837-1901 (Victorian)"</Filter>
<PolygonSymbolizer fill="#A71200" />
<PolygonSymbolizer fill="#6a9dba" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1901-1914 (Edwardian)"</Filter>
<PolygonSymbolizer fill="#A272D4" />
<PolygonSymbolizer fill="#c3e1eb" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1914-1945 (WWI-WWII)"</Filter>
<PolygonSymbolizer fill="#3988C5" />
<PolygonSymbolizer fill="#8f5385" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1946-1979 (Post war)"</Filter>
<PolygonSymbolizer fill="#5ADFA2" />
<PolygonSymbolizer fill="#cc1212" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "1980-1999 (Late 20th Century)"</Filter>
<PolygonSymbolizer fill="#C2F47A" />
<PolygonSymbolizer fill="#fbaf27" />
</Rule>
<Rule>
<Filter>[typology_style_period] = "2000-2025 (Early 21st Century)"</Filter>
<PolygonSymbolizer fill="#6FB40A" />
<PolygonSymbolizer fill="#fae269" />
</Rule>

<Rule>
Expand Down
22 changes: 11 additions & 11 deletions app/src/frontend/config/category-maps-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
legend: {
title: 'Architectural style',
elements: [
{ color: '#FFF739', text: '43AD-410 (Roman)' },
{ color: '#C5BD00', text: '410-1485 (Medieval)' },
{ color: '#FF9A39', text: '1485-1603 (Tudor)' },
{ color: '#C56000', text: '1603-1714 (Stuart)' },
{ color: '#EA8072', text: '1714-1837 (Georgian)' },
{ color: '#A71200', text: '1837-1901 (Victorian)' },
{ color: '#A272D4', text: '1901-1914 (Edwardian)' },
{ color: '#3988C5', text: '1914-1945 (WWI-WWII)' },
{ color: '#5ADFA2', text: '1946-1979 (Post war)' },
{ color: '#C2F47A', text: '1980-1999 (Late C20)' },
{ color: '#6FB40A', text: '2000-2025 (Early C21)' },
{ color: '#fae269', text: '2000-2025 (Early C21)' },
{ color: '#fbaf27', text: '1980-1999 (Late C20)' },
{ color: '#cc1212', text: '1946-1979 (Post war)' },
{ color: '#8f5385', text: '1914-1945 (WWI-WWII)' },
{ color: '#c3e1eb', text: '1901-1914 (Edwardian)' },
{ color: '#6a9dba', text: '1837-1901 (Victorian)' },
{ color: '#acc98f', text: '1714-1837 (Georgian)' },
{ color: '#6d8a51', text: '1603-1714 (Stuart)' },
{ color: '#d0c291', text: '1485-1603 (Tudor)' },
{ color: '#a9a695', text: '410-1485 (Medieval)' },
{ color: '#dadada', text: '43AD-410 (Roman)' },
]
}
},
Expand Down

0 comments on commit bae59e7

Please sign in to comment.