Skip to content

Commit

Permalink
disc grid gradient color tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
cdleveille committed Jun 9, 2024
1 parent ae9b2f5 commit d891cf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/disc/Disc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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%)`
Expand Down

0 comments on commit d891cf6

Please sign in to comment.