From 70277a4ac68a7cb58079a801748b7c8b7ea7d6bd Mon Sep 17 00:00:00 2001 From: mjkrooz Date: Mon, 4 Dec 2023 17:49:14 -0500 Subject: [PATCH] Using colorblind-friendly cell colors --- src/routes/scoreboard/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/routes/scoreboard/index.tsx b/src/routes/scoreboard/index.tsx index 1b4530d..0146e24 100644 --- a/src/routes/scoreboard/index.tsx +++ b/src/routes/scoreboard/index.tsx @@ -224,10 +224,10 @@ export default function Scoreboard() { data[name][column].Check != null && data[name][column].Check?.Passed ) { - style = { backgroundColor: "#259B0B" }; + style = { backgroundColor: "#5E9DAD" }; } else { style = { - backgroundColor: "#d20c23", + backgroundColor: "#C24444", color: "white", }; } @@ -238,10 +238,10 @@ export default function Scoreboard() { data[name][column].Check != null && data[name][column].Check?.Passed ) { - style = { backgroundColor: "green" }; + style = { backgroundColor: "#5E9DAD" }; } else { style = { - backgroundColor: "red", + backgroundColor: "#C24444", color: "white", }; }