Skip to content

Commit

Permalink
Color tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
wcolding committed Jan 17, 2024
1 parent 31c08c2 commit 33291b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions static/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ html {
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
height: 90%;
background-color: darkslategrey;
background-color: rgb(57, 77, 76);
text-align: center;
user-select: none;
}
Expand All @@ -19,7 +19,7 @@ h3 {
.section {
display: inline-block;
vertical-align: top;
background-color: beige;
background-color: rgb(240, 240, 232);
border-radius: 10px;
border: 5px;
border-style: solid;
Expand Down
2 changes: 1 addition & 1 deletion static/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ function toggleBoardCheckState(cell) {
cell.setAttribute("checked", state.toString());

if (state) {
cell.style.color = "blanchedalmond";
cell.style.color = "white";
cell.style.backgroundColor = "darkslategray";
} else {
cell.style.color = "black";
Expand Down

0 comments on commit 33291b9

Please sign in to comment.