mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Add logo color (#CFB755) for tab icons (#7433)
Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
parent
782e143c22
commit
9e975ba566
@ -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 />}
|
||||
</>
|
||||
|
||||
@ -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",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user