From 6a7c4f12708514510df0011a0e163fd4ab51ad7b Mon Sep 17 00:00:00 2001 From: Maciej Ziarkowski Date: Mon, 2 Dec 2019 15:19:44 +0000 Subject: [PATCH] Re-order land use legend --- app/src/frontend/map/legend.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/frontend/map/legend.tsx b/app/src/frontend/map/legend.tsx index 8493be54..161d484c 100644 --- a/app/src/frontend/map/legend.tsx +++ b/app/src/frontend/map/legend.tsx @@ -20,16 +20,16 @@ const LEGEND_CONFIG = { use: { title: 'Land Use', elements: [ - { color: '#52403C', text: 'Agriculture And Fisheries' }, - { color: '#73ccd1', text: 'Community Services' }, - { color: '#898944', text: 'Defence' }, - { color: '#f5f58f', text: 'Industry And Business' }, - { color: '#e5050d', text: 'Mixed Use' }, - { color: '#ffbfbf', text: 'Recreation And Leisure' }, { color: '#4a54a6', text: 'Residential' }, + { color: '#e5050d', text: 'Mixed Use' }, { color: '#ff8c00', text: 'Retail' }, + { color: '#f5f58f', text: 'Industry And Business' }, + { color: '#73ccd1', text: 'Community Services' }, + { color: '#ffbfbf', text: 'Recreation And Leisure' }, { color: '#b3de69', text: 'Transport' }, { color: '#cccccc', text: 'Utilities And Infrastructure' }, + { color: '#52403C', text: 'Agriculture And Fisheries' }, + { color: '#898944', text: 'Defence' }, { color: '#ffffff', text: 'Vacant And Derelict' }, ] },