Skip to content

Commit

Permalink
style: update primary color to better match DNR logo
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Nov 18, 2024
1 parent 28caf08 commit 71612df
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 11 deletions.
14 changes: 14 additions & 0 deletions src/components/Filter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,21 @@ export default function Filter(): JSX.Element {
url: config.urls.stations,
definitionExpression: emptyDefinition,
outFields: [config.fieldNames.STATION_ID],
renderer: {
// @ts-expect-error - accessor has issues with TS
type: 'simple',
symbol: {
type: 'simple-marker',
color: '#DD5623',
outline: {
color: [0, 0, 0],
width: 1,
},
size: 12,
},
},
});

addLayers([stationsLayer.current]);

mapView.on('pointer-move', (event) => {
Expand Down
22 changes: 11 additions & 11 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ export default {
extend: {
colors: {
primary: {
50: '#FCF5F3',
100: '#F9ECE6',
200: '#F3D8CE',
300: '#ECC2B1',
400: '#E6AF99',
500: '#E09B80',
600: '#DA8868',
700: '#D4754F',
800: '#CD5F34',
900: '#662F19',
950: '#35180D',
50: '#FCEEE9',
100: '#F8DDD3',
200: '#F1BBA7',
300: '#EA987B',
400: '#E4764E',
500: '#DD5623',
600: '#B1431B',
700: '#843215',
800: '#58220E',
900: '#2C1107',
950: '#160803',
},
secondary: {
50: '#F3F5F6',
Expand Down

0 comments on commit 71612df

Please sign in to comment.