From d891cf6fb9fff59f79d68e0366ef3539203da72c Mon Sep 17 00:00:00 2001 From: Chris Leveille Date: Sun, 9 Jun 2024 02:41:55 -0400 Subject: [PATCH] disc grid gradient color tweak --- src/components/disc/Disc.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/disc/Disc.tsx b/src/components/disc/Disc.tsx index bc01a51..0044975 100644 --- a/src/components/disc/Disc.tsx +++ b/src/components/disc/Disc.tsx @@ -25,7 +25,7 @@ export const Disc = ({ disc }: DiscProps) => { background_color: backgroundColor } = disc; - const outerGradient = backgroundColor === "#000000" ? "#666666" : "#000000"; + const outerGradient = backgroundColor === "#000000" ? "#666666" : "#222222"; const gradient: React.CSSProperties = { background: `radial-gradient(circle, ${backgroundColor} 45%, ${outerGradient} 90%)`