From afb1e6627136c87ff553395285819ece1049ca83 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Thu, 13 Jul 2023 05:41:36 +0100 Subject: [PATCH] change status colors to match discord --- src/app/components/Avatar.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/components/Avatar.tsx b/src/app/components/Avatar.tsx index 8865551..f141eb3 100644 --- a/src/app/components/Avatar.tsx +++ b/src/app/components/Avatar.tsx @@ -39,10 +39,10 @@ function LanyardComponent(props: { discord: any }) { const hasLanyard = lanyardData !== undefined; const statusColor = { - online: "bg-green-400", - offline: "bg-slate-400", - dnd: "bg-red-500", - idle: "bg-orange-400", + online: "bg-[#43B581]", + offline: "bg-[#747F8D]", + dnd: "bg-[#F04747]", + idle: "bg-[#FAA61A]", }; const currentStatus = lanyardData !== undefined