Skip to content

Commit

Permalink
Better board colors, remove unused png
Browse files Browse the repository at this point in the history
  • Loading branch information
glinscott committed Sep 30, 2012
1 parent 32fb236 commit f9d73a9
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Binary file removed img/board.png
Binary file not shown.
Binary file removed img/chess_icon.png
Binary file not shown.
Binary file removed img/square_dark.png
Binary file not shown.
Binary file removed img/square_light.png
Binary file not shown.
4 changes: 2 additions & 2 deletions js/boardui.js
Expand Up @@ -307,10 +307,10 @@ function RedrawBoard() {

var bgColor = (y ^ x) & 1;
if (bgColor) {
td.style.backgroundColor = "#888888";
td.style.backgroundColor = "#D18947";
}
else {
td.style.backgroundColor = "#FFFFFF";
td.style.backgroundColor = "#FFCE9E";
}

tr.appendChild(td);
Expand Down

0 comments on commit f9d73a9

Please sign in to comment.