Skip to content

Commit

Permalink
fix: dark grays are no longer the light ones
Browse files Browse the repository at this point in the history
  • Loading branch information
v1s10n-4 committed Sep 14, 2024
1 parent 7e0a606 commit 4630db9
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions app/map/utils/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ import {
jadeDark,
lime,
limeDark,
mauve,
mauveDark,
mint,
mintDark,
olive,
oliveDark,
orange,
orangeDark,
pink,
Expand All @@ -41,8 +45,14 @@ import {
redDark,
ruby,
rubyDark,
sage,
sageDark,
sand,
sandDark,
sky,
skyDark,
slate,
slateDark,
teal,
tealDark,
tomato,
Expand All @@ -51,16 +61,6 @@ import {
violetDark,
yellow,
yellowDark,
mauve,
mauveDark,
slate,
slateDark,
sage,
sageDark,
olive,
oliveDark,
sand,
sandDark,
} from "@radix-ui/colors";

export const graysLight = {
Expand All @@ -69,17 +69,17 @@ export const graysLight = {
slate,
sage,
olive,
sand
}
sand,
};

export const graysDark = {
gray,
gray: grayDark,
mauve: mauveDark,
slate: slateDark,
sage: sageDark,
olive: oliveDark,
sand: sandDark,
}
};

export const light = {
gray,
Expand Down Expand Up @@ -139,7 +139,7 @@ export const dark = {
sky: skyDark,
};

const grays = {light: graysLight, dark: graysDark}
const grays = { light: graysLight, dark: graysDark };

const colors = { light, dark, grays };

Expand Down

0 comments on commit 4630db9

Please sign in to comment.