Skip to content

Commit

Permalink
Update the color structure
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Dec 14, 2023
1 parent c8d9e39 commit f224352
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dapp/src/theme/Button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Button: ComponentSingleStyleConfig = {
color: "grey.700",
borderColor: "grey.700",
_hover: {
bg: "opacity.grey.700-05",
bg: "opacity.grey.700.5",
},
_active: {
bg: "transparent",
Expand All @@ -47,7 +47,7 @@ const Button: ComponentSingleStyleConfig = {
borderRadius: "xl",
bg: "gold.200",
_hover: {
bg: "opacity.grey.700-05",
bg: "opacity.grey.700.5",
},
_active: {
bg: "transparent",
Expand Down
6 changes: 5 additions & 1 deletion dapp/src/theme/utils/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ export const colors = {
700: "#231F20", // Acre Dirt
},
opacity: {
"grey.700-05": "rgba(35, 31, 32, 0.05)",
grey: {
700: {
5: "rgba(35, 31, 32, 0.05)",
},
},
},
}

0 comments on commit f224352

Please sign in to comment.