🎨 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

@ -14,7 +14,7 @@ const FullPageLoader: React.FunctionComponent<FullPageLoaderProps> = ({
}) => {
return (
<div className={clsx("flex h-full items-center justify-center", className)}>
<div className="bg-primary-500 flex items-center rounded-lg px-4 py-3 text-sm text-white shadow-sm">
<div className="bg-primary-600 flex items-center rounded-lg px-4 py-3 text-sm text-white shadow-sm">
<Spinner className="mr-3 h-5 animate-spin" />
{children}
</div>