From 4fc52128ec7787a26620112438e48e7c079d29ef Mon Sep 17 00:00:00 2001 From: AlberLC Date: Fri, 7 Apr 2023 06:22:22 +0200 Subject: [PATCH] Update connect 4 background color --- flanabot/connect_4_frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flanabot/connect_4_frontend.py b/flanabot/connect_4_frontend.py index aec357f..a8ead46 100644 --- a/flanabot/connect_4_frontend.py +++ b/flanabot/connect_4_frontend.py @@ -26,7 +26,7 @@ FONT_SIZE = 32 * SIZE_MULTIPLIER TABLE_LINE_WIDTH = 4 * SIZE_MULTIPLIER BLUE = (66 / 255, 135 / 255, 245 / 255) -BACKGROUND_COLOR = (54 / 255, 57 / 255, 63 / 255) +BACKGROUND_COLOR = (49 / 255, 51 / 255, 56 / 255) GRAY = (200 / 255, 200 / 255, 200 / 255) HIGHLIGHT_COLOR = (104 / 255, 107 / 255, 113 / 255) RED = (255 / 255, 70 / 255, 70 / 255)