Skip to content

Commit

Permalink
fix: update light mode colors
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanpaudel93 committed Dec 20, 2024
1 parent 61f9424 commit 08b3bee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/auth/AuthButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export function AuthButtons({
const PStatusLabel = styled.p<{ status: AuthRequestStatus }>`
margin: 0;
padding: 16px;
background: ${({ theme }) => theme.backgroundv2};
background: ${(props) =>
props.theme.displayTheme === "light" ? "#f5f5f5" : "#191919"};
border-radius: 10px;
`;
6 changes: 3 additions & 3 deletions src/routes/auth/connect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ const ConnectWalletWrapper = styled.div`
align-items: center;
align-self: stretch;
border-radius: 10px;
background: #333;
background: ${(props) => props.theme.backgroundSecondary};
`;

export const AccountSquircle = styled(Squircle)`
Expand Down Expand Up @@ -677,7 +677,7 @@ const CustomPermissionsButton = styled(Button)`
align-items: center;
align-self: stretch;
border-radius: 8px;
background: #333;
background: ${(props) => props.theme.backgroundSecondary};
`;

const CustomPermissionsInfo = styled.div`
Expand All @@ -687,7 +687,7 @@ const CustomPermissionsInfo = styled.div`
align-items: center;
gap: 10px;
align-self: stretch;
border: 1px solid #333;
border: 1px solid ${(props) => props.theme.backgroundSecondary};
border-radius: 8px;
`;

Expand Down

0 comments on commit 08b3bee

Please sign in to comment.