Skip to content

Commit

Permalink
fix minesweeper graph colors on dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel James committed Nov 2, 2023
1 parent 43e06e4 commit f7558a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/MinesweeperGraph/MinesweeperGraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,14 @@ export default function MinesweeperGraph() {
/> */}

<ReferenceLine y={ 100000 }
stroke="#ecf0f1"
stroke="var(--color-foreground)"
strokeWidth={ 2 }
opacity={ 0.3 }
/>

<Scatter data={ data }
type="linear"
fill="black"
fill="var(--color-foreground)"
id={ id }
isAnimationActive={ false }
/>
Expand Down

0 comments on commit f7558a3

Please sign in to comment.