Skip to content

Commit

Permalink
another disc color tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
cdleveille committed Jun 9, 2024
1 parent d891cf6 commit e8419a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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" : "#222222";
const outerGradient = backgroundColor === "#000000" ? "#555555" : "#222222";

const gradient: React.CSSProperties = {
background: `radial-gradient(circle, ${backgroundColor} 45%, ${outerGradient} 90%)`
Expand Down
2 changes: 1 addition & 1 deletion src/components/disc/DiscDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const DiscDetail = ({ disc }: DiscDetailProps) => {
background_color: backgroundColor
} = disc;

const outerGradient = backgroundColor === "#000000" ? "#666666" : "#000000";
const outerGradient = backgroundColor === "#000000" ? "#444444" : "#000000";

const gradient: React.CSSProperties = {
background: `radial-gradient(circle, ${backgroundColor} 45%, ${outerGradient} 90%)`
Expand Down

0 comments on commit e8419a8

Please sign in to comment.