Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add brand-teal to color palette #6

Open
mscottford opened this issue May 1, 2023 · 0 comments
Open

Add brand-teal to color palette #6

mscottford opened this issue May 1, 2023 · 0 comments

Comments

@mscottford
Copy link
Contributor

mscottford commented May 1, 2023

Use https://javisperez.github.io/tailwindcolorshades/?persian-green=22AF99 to create a brand-teal color.

This color could be used to create a header color for the CardWithHeader component on the /community page. See

export function CardWithHeader({title, children}) {
return (
<>
<div className="divide-y divide-gray-200 overflow-hidden rounded-lg bg-white shadow my-4 mb-6">
<div className="not-prose px-4 py-5 sm:px-6 bg-brand-yellow-400">
<h3 className="text-base font-semibold leading-6 text-gray-900">
{title}
</h3>
</div>
<div className="px-4 py-0">
{children}
</div>
</div>
</>
)
}
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant