Skip to content

Commit bc455d9

Browse files
committed
Update colors of MazeGrid walls to fit the aesthetic better
1 parent 2de2b7a commit bc455d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MazeGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const MazeGrid: React.FC<MazeGridProps> = ({ handleMouseDown, handleMouseEnter,
2525
style={{
2626
width: '25px',
2727
height: '25px',
28-
backgroundColor: (cell.wall && !(cell.end || cell.start)) ? 'black' : (cell.finalPath ? 'yellow' : (cell.visited ? 'lightblue' : 'white')),
28+
backgroundColor: (cell.wall && !(cell.end || cell.start)) ? 'darkslateblue' : (cell.finalPath ? 'yellow' : (cell.visited ? 'lightblue' : 'white')),
2929
border: '.5px solid lightblue',
3030
display: 'flex',
3131
alignItems: 'center',

0 commit comments

Comments
 (0)