Skip to content

Commit

Permalink
fix: switch back to yellow fill for search geometry symbol
Browse files Browse the repository at this point in the history
Closes #646
  • Loading branch information
stdavis committed Mar 5, 2024
1 parent 471f8a8 commit f95a60c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/app-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ export default {
symbols: {
filter: {
type: 'simple-fill',
style: 'none',
outline: { style: 'dash', width: 1.5 },
color: null,
style: 'solid',
color: 'rgba(255, 255, 0, 0.15)',
outline: { color: 'rgb(255, 255, 0)' },
},
point: {
type: 'simple',
Expand All @@ -14,7 +14,7 @@ export default {
color: null, // to be filled in later
size: 8,
outline: {
color: [0, 0, 0, 255],
color: 'rgba(0, 0, 0, 255)',
width: 1,
},
},
Expand All @@ -26,24 +26,24 @@ export default {
style: 'solid',
color: null, // to be filled in later
outline: {
color: [0, 0, 0, 255],
color: 'rgba(0, 0, 0, 255)',
width: 0.4,
},
},
},
defaultColors: [
[31, 120, 180],
[51, 160, 44],
[227, 26, 28],
[255, 127, 0],
[106, 61, 154],
[253, 191, 111],
[251, 154, 153],
[178, 223, 138],
[166, 206, 227],
[202, 178, 214],
[255, 255, 153],
[177, 89, 40],
'rgb(31, 120, 180)',
'rgb(51, 160, 44)',
'rgb(227, 26, 28)',
'rgb(255, 127, 0)',
'rgb(106, 61, 154)',
'rgb(253, 191, 111)',
'rgb(251, 154, 153)',
'rgb(178, 223, 138)',
'rgb(166, 206, 227)',
'rgb(202, 178, 214)',
'rgb(255, 255, 153)',
'rgb(177, 89, 40)',
],
defaultOpacity: 0.65,
},
Expand Down

0 comments on commit f95a60c

Please sign in to comment.