From 46d91af001affca266f40ace3568f868f8677a78 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Thu, 12 Mar 2026 09:00:45 -0500 Subject: [PATCH] change color order --- web/src/utils/profileColors.ts | 35 ++++++++++++++-------------------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/web/src/utils/profileColors.ts b/web/src/utils/profileColors.ts index 554b52b01..5c2bc552f 100644 --- a/web/src/utils/profileColors.ts +++ b/web/src/utils/profileColors.ts @@ -1,6 +1,13 @@ import type { ProfileColor } from "@/types/profile"; const PROFILE_COLORS: ProfileColor[] = [ + { + bg: "bg-pink-400", + text: "text-pink-400", + dot: "bg-pink-400", + border: "border-pink-400", + bgMuted: "bg-pink-400/20", + }, { bg: "bg-violet-500", text: "text-violet-500", @@ -8,20 +15,6 @@ const PROFILE_COLORS: ProfileColor[] = [ border: "border-violet-500", bgMuted: "bg-violet-500/20", }, - { - bg: "bg-teal-400", - text: "text-teal-400", - dot: "bg-teal-400", - border: "border-teal-400", - bgMuted: "bg-teal-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-lime-500", text: "text-lime-500", @@ -29,6 +22,13 @@ const PROFILE_COLORS: ProfileColor[] = [ border: "border-lime-500", bgMuted: "bg-lime-500/20", }, + { + bg: "bg-teal-400", + text: "text-teal-400", + dot: "bg-teal-400", + border: "border-teal-400", + bgMuted: "bg-teal-400/20", + }, { bg: "bg-sky-400", text: "text-sky-400", @@ -36,13 +36,6 @@ const PROFILE_COLORS: ProfileColor[] = [ border: "border-sky-400", bgMuted: "bg-sky-400/20", }, - { - bg: "bg-pink-400", - text: "text-pink-400", - dot: "bg-pink-400", - border: "border-pink-400", - bgMuted: "bg-pink-400/20", - }, { bg: "bg-emerald-400", text: "text-emerald-400",