Skip to content

Commit

Permalink
refactor: colors
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Dec 10, 2023
1 parent 6d419e1 commit ab5e97c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .storybook/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

@layer base {
body {
@apply text-xs text-ui-neutral-2;
@apply text-xs text-ui-neutral-3;
}
}
2 changes: 1 addition & 1 deletion src/components/Alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function Alert({ children }: AlertProps) {
return (
<div
role="alert"
className="grid grid-cols-[auto_1fr] gap-x-2 rounded-2xl bg-ui-neutral-1 p-4 text-base text-ui-neutral-5"
className="grid grid-cols-[auto_1fr] gap-x-2 rounded-2xl bg-ui-primary-1 p-4 text-base text-ui-primary-5"
>
<InformationCircleIcon className="h-6 w-6" />
{children}
Expand Down
2 changes: 1 addition & 1 deletion src/components/PrimaryButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const PrimaryButton = forwardRefWithGenerics(function PrimaryButton<
}
className={clsx(
className,
"inline-flex h-10 items-center justify-center rounded-lg bg-ui-primary-3 px-4 text-center text-base font-semibold leading-none text-ui-neutral-0 transition-colors hover:bg-ui-primary-4",
"inline-flex h-10 items-center justify-center rounded-lg bg-ui-primary-3 px-4 text-center text-base font-semibold leading-none text-ui-primary-0 transition-colors hover:bg-ui-primary-4",
)}
{...props}
/>
Expand Down

0 comments on commit ab5e97c

Please sign in to comment.