Skip to content

Commit ba18135

Browse files
authored
Merge pull request #11236 from ethereum/colors-retouched
Retouched the primary Colours
2 parents 6a97933 + 3869c4a commit ba18135

File tree

2 files changed

+25
-15
lines changed

2 files changed

+25
-15
lines changed

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

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,28 @@ const colors = {
1212
900: "#141414",
1313
},
1414
blue: {
15-
100: "#dedeff",
16-
300: "#8282ff",
17-
500: "#1c1cff",
18-
600: "#090990",
19-
700: "#0b0b66",
15+
50: "#F6F6FF",
16+
100: "#EBEBFF",
17+
200: "#D6D6FF",
18+
300: "#9999FF",
19+
400: "#5555FF",
20+
500: "#1C1CFF",
21+
600: "#0000E0",
22+
700: "#0000A3",
23+
800: "#000066",
24+
900: "#000029",
2025
},
2126
orange: {
22-
100: "#ffe3d3",
23-
300: "#ffb991",
24-
500: "#ff7324",
25-
600: "#c95d20",
26-
800: "#352313",
27+
50: "#FFF3ED",
28+
100: "#FFE5D6",
29+
200: "#FFCBAD",
30+
300: "#FFB185",
31+
400: "#FF985C",
32+
500: "#FF7324",
33+
600: "#B84300",
34+
700: "#7A2D00",
35+
800: "#521E00",
36+
900: "#2F1000",
2737
},
2838
red: {
2939
100: "#f7c8c8",

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ const semanticTokens = {
3838
// Main Set
3939
primary: {
4040
base: { _light: "blue.500", _dark: "orange.500" },
41-
highContrast: { _light: "blue.700", _dark: "orange.100" },
42-
lowContrast: { _light: "blue.100", _dark: "orange.800" },
43-
hover: { _light: "blue.300", _dark: "orange.300" },
44-
visited: { _light: "blue.600", _dark: "orange.600" },
41+
highContrast: { _light: "blue.800", _dark: "orange.100" },
42+
lowContrast: { _light: "blue.100", _dark: "orange.900" },
43+
hover: { _light: "blue.400", _dark: "orange.400" },
44+
visited: { _light: "blue.700", _dark: "orange.700" },
4545
// ! Deprecating primary.light
4646
light: { _light: "blue.100", _dark: "orange.100" },
4747
// ! Deprecating primary.dark
4848
dark: { _light: "blue.700", _dark: "orange.800" },
4949
// ! Deprecating primary.pressed
50-
pressed: { _light: "blue.300", _dark: "orange.800" },
50+
pressed: { _light: "blue.400", _dark: "orange.800" },
5151
},
5252
body: {
5353
base: { _light: "gray.700", _dark: "gray.100" },

0 commit comments

Comments
 (0)