mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-26 20:57:24 +02:00
🎨 Update color palette (#613)
Use more saturated colors and increase contrast to improve readability
This commit is contained in:
parent
029d130a4d
commit
a2481b3bbd
71 changed files with 198 additions and 119 deletions
|
@ -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)}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue