From 95623f94407703a5fc138d2e70be24cbbe8f6356 Mon Sep 17 00:00:00 2001 From: mertbagt Date: Sun, 31 May 2026 16:44:57 -0400 Subject: [PATCH 1/2] color correction --- components/NavbarComponents.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/NavbarComponents.tsx b/components/NavbarComponents.tsx index 78980db76..668cf5eea 100644 --- a/components/NavbarComponents.tsx +++ b/components/NavbarComponents.tsx @@ -64,14 +64,14 @@ export const Avatar = () => { <> {isOrg ? ( {t("profileMenu")} ) : ( {t("profileMenu")} Date: Sun, 31 May 2026 16:50:26 -0400 Subject: [PATCH 2/2] color correction --- components/ProfilePage/StyledUserIcons.tsx | 4 ++-- components/search/testimony/TestimonyHit.tsx | 2 +- ...rofile-individual-icon.svg => profile-individual-blue.svg} | 0 public/{profile-org-icon.svg => profile-org-blue.svg} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename public/{profile-individual-icon.svg => profile-individual-blue.svg} (100%) rename public/{profile-org-icon.svg => profile-org-blue.svg} (100%) diff --git a/components/ProfilePage/StyledUserIcons.tsx b/components/ProfilePage/StyledUserIcons.tsx index 1a34bbe1b..15277cda7 100644 --- a/components/ProfilePage/StyledUserIcons.tsx +++ b/components/ProfilePage/StyledUserIcons.tsx @@ -21,11 +21,11 @@ export const BaseProfileIcon = ({ let iconSrc switch (role) { case "organization": { - iconSrc = "/profile-org-icon.svg" + iconSrc = "/profile-org-blue.svg" break } default: - iconSrc = "/profile-individual-icon.svg" + iconSrc = "/profile-individual-blue.svg" break } return ( diff --git a/components/search/testimony/TestimonyHit.tsx b/components/search/testimony/TestimonyHit.tsx index 29433578a..402c33e4a 100644 --- a/components/search/testimony/TestimonyHit.tsx +++ b/components/search/testimony/TestimonyHit.tsx @@ -177,7 +177,7 @@ const TestimonyResult = ({ hit }: { hit: Hit }) => {