Skip to content

Commit 2bdde99

Browse files
refactor(theme): update colors
1 parent db32d09 commit 2bdde99

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/@chakra-ui/gatsby-plugin/foundations/colors.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@ export type Colors = typeof colors
33
const colors = {
44
gray: {
55
100: "#f7f7f7",
6+
200: "#e7e7e7",
67
300: "#d4d4d4",
78
400: "#b0b0b0",
89
500: "#646464",
10+
600: "#333333",
911
700: "#222222",
1012
900: "#141414",
1113
},
1214
blue: {
1315
100: "#dedeff",
14-
300: "#ababfe",
16+
300: "#8282ff",
1517
500: "#1c1cff",
1618
600: "#090990",
1719
700: "#0b0b66",

src/@chakra-ui/gatsby-plugin/semanticTokens.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ const semanticTokens = {
4848
body: { _light: "gray.700", _dark: "gray.100" },
4949
// ! Deprecating bodyInverted
5050
bodyInverted: { _light: "gray.100", _dark: "gray.700" },
51-
bodyLight: { _light: "gray.500", _dark: "gray.300" },
51+
bodyMedium: { _light: "gray.500", _dark: "gray.300" },
52+
bodyLight: { _light: "gray.200", _dark: "gray.600" },
5253
disabled: { _light: "gray.300", _dark: "gray.500" },
5354
background: { _light: "white", _dark: "gray.700" },
5455
backgroundHighlight: { _light: "gray.100", _dark: "gray.900" },

0 commit comments

Comments
 (0)