Skip to content

Commit

Permalink
feat: use black as primary
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Mar 1, 2024
1 parent 4631d7d commit 4d23edc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions apps/web/src/components/Home/Sidebar/EnableLensManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ const EnableLensManager: FC = () => {
}

return (
<Card
as="aside"
className="border-brand-400 !bg-brand-300/20 text-brand-600 mb-4 space-y-2.5 p-5"
>
<Card as="aside" className="mb-4 space-y-2.5 p-5">
<p className="text-lg font-bold">Signless transactions</p>
<p className="text-sm leading-[22px]">
You can enable Lens manager to interact with {APP_NAME} without signing
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/Home/Sidebar/SetProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ interface StatusProps {
const Status: FC<StatusProps> = ({ finished, title }) => (
<div className="flex items-center space-x-1.5">
{finished ? (
<CheckCircleIcon className="size-5 text-gray-500" />
<CheckCircleIcon className="size-5" />
) : (
<MinusCircleIcon className="size-5 text-gray-500" />
<MinusCircleIcon className="size-5" />
)}
<div className="ld-text-gray-500">{title}</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
};

const nonOutlineStyles = {
'bg-black text-white hover:bg-gray-900 active:bg-black':
'bg-black dark:bg-white text-white dark:text-black hover:bg-gray-900 active:bg-black':
!outline && variant === 'primary',
'bg-brand-500 hover:bg-brand-600 active:bg-brand-700 text-white':
!outline && variant === 'brand',
Expand Down

0 comments on commit 4d23edc

Please sign in to comment.