Skip to content

Commit

Permalink
Fix answer colors
Browse files Browse the repository at this point in the history
Used the wrong color palette.
  • Loading branch information
ejv2 committed Jan 20, 2023
1 parent 0f25b1d commit d4a4472
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -361,14 +361,14 @@ input.error {
}

.game-answer:nth-of-type(1) {
background-color: var(--red);
background-color: #E21B3C;
}
.game-answer:nth-of-type(2) {
background-color: var(--yellow);
background-color: #1368CE;
}
.game-answer:nth-of-type(3) {
background-color: var(--green);
background-color: #D89E00;
}
.game-answer:nth-of-type(4) {
background-color: var(--blue);
background-color: #298F0D;
}

0 comments on commit d4a4472

Please sign in to comment.