Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
different grey emoji for dark vs light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
DevangThakkar committed Jan 26, 2022
1 parent a29cbd8 commit 22b6d50
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/EndGameModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ export const EndGameModal = ({
.map((state) => {
switch (state) {
case status.gray:
return '⬛'
if (darkMode) {
return '⬛'
}
else {
return '⬜'
}
case status.green:
return '🟩'
case status.yellow:
Expand Down

0 comments on commit 22b6d50

Please sign in to comment.