Skip to content

Commit

Permalink
fix: operational map styling
Browse files Browse the repository at this point in the history
  • Loading branch information
samshara committed Jan 29, 2025
1 parent 4793d7c commit c7130aa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ interface ClickedPoint {
}

const MIN_LEARNING_COUNT = 0;
const LEARNING_COUNT_LOW_COLOR = 'var(--go-ui-color-blue-30)';
const LEARNING_COUNT_HIGH_COLOR = 'var(--go-ui-color-blue-90)';
const LEARNING_COUNT_LOW_COLOR = '#AEB7C2';
const LEARNING_COUNT_HIGH_COLOR = '#011E41';

interface Props {
className?: string;
Expand Down Expand Up @@ -217,7 +217,7 @@ function OperationalLearningMap(props: Props) {
geoJson={learningCountGeoJSON}
>
<MapLayer
layerKey="points-halo-circle"
layerKey="points-circle"
onClick={handlePointClick}
layerOptions={{
type: 'circle',
Expand Down

0 comments on commit c7130aa

Please sign in to comment.