Skip to content

Commit

Permalink
feat: adjust text color
Browse files Browse the repository at this point in the history
  • Loading branch information
antonio-altr committed Mar 7, 2024
1 parent c29a10a commit 30e8e3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion ui/address/contract/ContractConnectWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const ContractConnectWallet = () => {
size="sm"
variant="outline"
isLoading={ isModalOpening || isModalOpen }
backgroundColor={ '#EF6A7D' }
loadingText="Connect wallet"
>
Connect wallet
Expand Down
4 changes: 2 additions & 2 deletions ui/home/StatsItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const StatsItem = ({ icon, title, value, className, tooltip, url, isLoading }: P
[`@media screen and (min-width: ${ breakpoints.lg }) and (max-width: ${ LARGEST_BREAKPOINT })`]: { alignItems: 'center' },
};

const bgColor = useColorModeValue('#EF6A7D', '#EF6A7D');
const bgColor = '#EF6A7D';
const loadingBgColor = useColorModeValue('blackAlpha.50', 'whiteAlpha.50');

return (
Expand Down Expand Up @@ -55,7 +55,7 @@ const StatsItem = ({ icon, title, value, className, tooltip, url, isLoading }: P
alignItems="start"
sx={ sxText }
>
<Skeleton isLoaded={ !isLoading } color="text_secondary" fontSize="xs" lineHeight="16px" borderRadius="base">
<Skeleton isLoaded={ !isLoading } color="text" fontSize="xs" lineHeight="16px" borderRadius="base">
<span>{ title }</span>
</Skeleton>
<Skeleton isLoaded={ !isLoading } fontWeight={ 500 } fontSize="md" color={ useColorModeValue('black', 'white') } borderRadius="base">
Expand Down

0 comments on commit 30e8e3a

Please sign in to comment.