Add logo color (#CFB755) for tab icons (#7433)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Robert Brennan 2025-03-22 18:19:14 -07:00 committed by GitHub
parent 782e143c22
commit 9e975ba566
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export function NavTab({ to, label, icon, isBeta }: NavTabProps) {
>
{({ isActive }) => (
<>
<div className={cn(isActive && "text-primary")}>{icon}</div>
<div className={cn(isActive && "text-logo")}>{icon}</div>
{label}
{isBeta && <BetaBadge />}
</>

View File

@ -10,6 +10,7 @@ export default {
extend: {
colors: {
primary: "#C9B974", // nice yellow
logo: "#CFB755", // color for logos and icons
base: "#0D0F11", // dark background also used for tooltips
"base-secondary": "#24272E", // lighter background
danger: "#E76A5E",
@ -35,6 +36,7 @@ export default {
dark: {
colors: {
primary: "#4465DB",
logo: "#CFB755",
},
},
},