Skip to content

Commit

Permalink
feat: adjust gray color for better visibility of selected trees
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschi authored and raphael-arce committed May 3, 2024
1 parent 8d12218 commit 87c72f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/map/hooks/use-map-constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function useMapConstants() {
);
const TREE_DEFAULT_COLOR = fullConfig.theme.colors["gdk-neon-green"];

const TREE_GRAY_COLOR = fullConfig.theme.colors["gdk-light-gray"];
const TREE_GRAY_COLOR = fullConfig.theme.colors["gdk-tree-gray"];
const TREE_YELLOW_COLOR = fullConfig.theme.colors["gdk-tree-yellow"];
const TREE_ORANGE_COLOR = fullConfig.theme.colors["gdk-tree-orange"];

Expand Down
4 changes: 2 additions & 2 deletions src/components/map/hooks/use-tree-circle-style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ export function useTreeCircleStyle() {
["linear"],
["zoom"],
10,
0.5,
20,
0.7,
20,
0.5,
] as Expression;

const circleStrokeColor = [
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default {
"gdk-neon-green": "#3DF99A",
"gdk-tree-orange": "#FD9531",
"gdk-tree-yellow": "#FDE725",
"gdk-tree-gray": "#9E9FA0",
"gdk-tree-gray": "#CBCBCB",
"gdk-bar-blue": "#5695F4",
},
blur: {
Expand Down

0 comments on commit 87c72f9

Please sign in to comment.