From eec37e2e19be849be0ee16d4a397aef3cce680ef Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 22 Apr 2026 08:53:39 -0500 Subject: [PATCH] don't use any variant of orange as a profile color avoids confusion with unsaved changes --- web/src/utils/profileColors.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/web/src/utils/profileColors.ts b/web/src/utils/profileColors.ts index 5c2bc552f0..ace86cba40 100644 --- a/web/src/utils/profileColors.ts +++ b/web/src/utils/profileColors.ts @@ -79,11 +79,11 @@ const PROFILE_COLORS: ProfileColor[] = [ bgMuted: "bg-green-400/20", }, { - bg: "bg-amber-400", - text: "text-amber-400", - dot: "bg-amber-400", - border: "border-amber-400", - bgMuted: "bg-amber-400/20", + bg: "bg-fuchsia-500", + text: "text-fuchsia-500", + dot: "bg-fuchsia-500", + border: "border-fuchsia-500", + bgMuted: "bg-fuchsia-500/20", }, { bg: "bg-slate-400", @@ -93,11 +93,11 @@ const PROFILE_COLORS: ProfileColor[] = [ bgMuted: "bg-slate-400/20", }, { - bg: "bg-orange-300", - text: "text-orange-300", - dot: "bg-orange-300", - border: "border-orange-300", - bgMuted: "bg-orange-300/20", + bg: "bg-stone-500", + text: "text-stone-500", + dot: "bg-stone-500", + border: "border-stone-500", + bgMuted: "bg-stone-500/20", }, { bg: "bg-blue-300",