Skip to content

Commit ca16641

Browse files
committed
new colors
1 parent 174df13 commit ca16641

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const colors = {
99
500: "#646464",
1010
600: "#333333",
1111
700: "#222222",
12+
800: "#1B1B1B",
1213
900: "#141414",
1314
},
1415
blue: {
@@ -30,6 +31,7 @@ const colors = {
3031
300: "#FFB185",
3132
400: "#FF985C",
3233
500: "#FF7324",
34+
550: "#DF5A0E",
3335
600: "#B84300",
3436
700: "#7A2D00",
3537
800: "#521E00",

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const semanticTokens = {
4141
highContrast: { _light: "blue.800", _dark: "orange.100" },
4242
lowContrast: { _light: "blue.100", _dark: "orange.900" },
4343
hover: { _light: "blue.400", _dark: "orange.400" },
44-
visited: { _light: "blue.700", _dark: "orange.400" },
44+
visited: { _light: "blue.700", _dark: "orange.550" },
4545
// ! Deprecating primary.light
4646
light: { _light: "blue.100", _dark: "orange.100" },
4747
// ! Deprecating primary.dark
@@ -50,14 +50,14 @@ const semanticTokens = {
5050
pressed: { _light: "blue.400", _dark: "orange.800" },
5151
},
5252
body: {
53-
base: { _light: "gray.700", _dark: "gray.100" },
53+
base: { _light: "gray.800", _dark: "gray.100" },
5454
medium: { _light: "gray.500", _dark: "gray.300" },
5555
light: { _light: "gray.200", _dark: "gray.600" },
5656
// ! Deprecating body.inverted
57-
inverted: { _light: "gray.100", _dark: "gray.700" },
57+
inverted: { _light: "gray.100", _dark: "gray.800" },
5858
},
5959
background: {
60-
base: { _light: "white", _dark: "gray.700" },
60+
base: { _light: "white", _dark: "gray.800" },
6161
highlight: { _light: "gray.100", _dark: "gray.900" },
6262
},
6363
disabled: { _light: "gray.400", _dark: "gray.500" },

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const styles = {
1414
body: {
1515
// TODO: when we have Chakra v2, this should be done by overriding the
1616
// native Chakra semantic tokens
17-
bg: mode("white", "gray.700")(props),
17+
bg: mode("white", "gray.800")(props),
1818
lineHeight: "base",
1919
fontSize: "md",
2020
},

0 commit comments

Comments
 (0)