Skip to content

Commit

Permalink
Merge branch '468-color-consistency-between-figma-designs-and-rosen-a…
Browse files Browse the repository at this point in the history
…pp-code' into 'dev'

Resolve "Color Consistency Between Figma Designs and Rosen App Code"

Closes #468

See merge request ergo/rosen-bridge/ui!391
  • Loading branch information
vorujack committed Dec 23, 2024
2 parents 37f7d3f + 2d19555 commit 645d539
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/little-pianos-brush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@rosen-bridge/ui-kit': patch
'@rosen-bridge/rosen-app': patch
---

Review theme colors in Figma and ensure consistency by identifying and fixing any mismatches
2 changes: 1 addition & 1 deletion apps/rosen/app/(bridge)/BridgeTransaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const BridgeTransaction = ({
backgroundColor: (theme) =>
theme.palette.mode === 'light'
? theme.palette.primary.light
: theme.palette.primary.dark,
: theme.palette.background.paper,
padding: (theme) => theme.spacing(3),
}}
>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-kit/src/components/common/NavigationButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const NavigationButton: FC<NavButtonProps> = (props) => {

if (badge)
startIcon = (
<Badge badgeContent={badge} color="primary">
<Badge badgeContent={badge} color="secondary">
{startIcon}
</Badge>
);
Expand Down

0 comments on commit 645d539

Please sign in to comment.