Skip to content

Commit

Permalink
Define a new color
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Dec 13, 2023
1 parent f799e59 commit fbf0332
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dapp/src/theme/Button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Button: ComponentSingleStyleConfig = {
color: "grey.700",
borderColor: "grey.700",
_hover: {
bg: "rgba(35, 31, 32, 0.05)",
bg: "opacity.grey.700-05",
},
_active: {
bg: "transparent",
Expand All @@ -43,7 +43,7 @@ const Button: ComponentSingleStyleConfig = {
borderRadius: "xl",
bg: "gold.200",
_hover: {
bg: "rgba(35, 31, 32, 0.05)",
bg: "opacity.grey.700-05",
},
_active: {
bg: "transparent",
Expand Down
3 changes: 3 additions & 0 deletions dapp/src/theme/utils/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,7 @@ export const colors = {
600: "#443D3F",
700: "#231F20", // Acre Dirt
},
opacity: {
"grey.700-05": "rgba(35, 31, 32, 0.05)",
},
}

0 comments on commit fbf0332

Please sign in to comment.