🎨 Update color palette (#613)

Use more saturated colors and increase contrast to improve readability
This commit is contained in:
Luke Vella 2023-03-27 11:46:33 +01:00 committed by GitHub
parent 029d130a4d
commit a2481b3bbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
71 changed files with 198 additions and 119 deletions

View file

@ -40,7 +40,7 @@ export const Button = (props: ButtonProps) => {
<UnstyledButton
{...props}
className={clsx(
"bg-primary-500 rounded px-3 py-2 font-sans text-white",
"bg-primary-600 rounded px-3 py-2 font-sans text-white",
props.className,
)}
/>
@ -51,7 +51,7 @@ export const Link = (props: LinkProps) => {
return (
<UnstyledLink
{...props}
className={clsx("text-primary-500", props.className)}
className={clsx("text-primary-600", props.className)}
/>
);
};