diff --git a/src/components/nostr/UserName.tsx b/src/components/nostr/UserName.tsx index e8a17d9..551e86c 100644 --- a/src/components/nostr/UserName.tsx +++ b/src/components/nostr/UserName.tsx @@ -13,7 +13,7 @@ interface UserNameProps { * Component that displays a user's name from their Nostr profile * Shows placeholder derived from pubkey while loading or if no profile exists * Clicking opens the user's profile - * Uses zap color for the logged-in user (themeable gold/amber) + * Uses highlight color for the logged-in user (themeable amber) */ export function UserName({ pubkey, isMention, className }: UserNameProps) { const { addWindow, state } = useGrimoire(); @@ -33,7 +33,7 @@ export function UserName({ pubkey, isMention, className }: UserNameProps) { dir="auto" className={cn( "font-semibold cursor-crosshair hover:underline hover:decoration-dotted", - isActiveAccount ? "text-zap" : "text-accent", + isActiveAccount ? "text-highlight" : "text-accent", className, )} onClick={handleClick} diff --git a/src/components/nostr/kinds/SpellRenderer.tsx b/src/components/nostr/kinds/SpellRenderer.tsx index 35e8263..0002046 100644 --- a/src/components/nostr/kinds/SpellRenderer.tsx +++ b/src/components/nostr/kinds/SpellRenderer.tsx @@ -42,7 +42,7 @@ export function MePlaceholder({ return (