From d4a4472decb93ab2d0a108bacac5e4f30788cf0f Mon Sep 17 00:00:00 2001 From: Ethan Marshall Date: Fri, 20 Jan 2023 23:09:18 +0000 Subject: [PATCH] Fix answer colors Used the wrong color palette. --- frontend/static/styles.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/static/styles.css b/frontend/static/styles.css index e5c60ed..33586ca 100644 --- a/frontend/static/styles.css +++ b/frontend/static/styles.css @@ -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; }