From c95a6899c5c18abbd3e4a642037e8e9d716e5b49 Mon Sep 17 00:00:00 2001 From: Caleb <60302635@udst.edu.qa> Date: Sun, 15 Feb 2026 18:14:47 +0300 Subject: [PATCH] Fix win/loss message colors (fixes #7) --- styles.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/styles.css b/styles.css index 2d7f786..efe624b 100644 --- a/styles.css +++ b/styles.css @@ -277,21 +277,21 @@ body { } .game-status.winner { - background: #f8d7da; - border: 2px solid #f5c6cb; + background: #d4edda; + border: 2px solid #c3e6cb; } .game-status.winner h3 { - color: #721c24; + color: #155724; } .game-status.loser { - background: #d4edda; - border: 2px solid #c3e6cb; + background: #f8d7da; + border: 2px solid #f5c6cb; } .game-status.loser h3 { - color: #155724; + color: #721c24; } /* Buttons */