From ab8264218fa850ee03e41e1bb97c4ee221d35247 Mon Sep 17 00:00:00 2001 From: jschick04 Date: Thu, 8 Aug 2024 13:06:28 -0500 Subject: [PATCH] Fixed color ratio for red buttons --- src/EventLogExpert/Shared/Components/BooleanSelect.razor.css | 2 +- src/EventLogExpert/wwwroot/css/app.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EventLogExpert/Shared/Components/BooleanSelect.razor.css b/src/EventLogExpert/Shared/Components/BooleanSelect.razor.css index 60b804a9..27839b2d 100644 --- a/src/EventLogExpert/Shared/Components/BooleanSelect.razor.css +++ b/src/EventLogExpert/Shared/Components/BooleanSelect.razor.css @@ -32,7 +32,7 @@ .toggle input:checked + label:first-of-type { background-color: var(--clr-red); box-shadow: none; - color: var(--clr-white); + color: var(--clr-black); &[data-single-color="true"] { background-color: var(--clr-lightblue); diff --git a/src/EventLogExpert/wwwroot/css/app.css b/src/EventLogExpert/wwwroot/css/app.css index d912263e..3ceaa328 100644 --- a/src/EventLogExpert/wwwroot/css/app.css +++ b/src/EventLogExpert/wwwroot/css/app.css @@ -6,7 +6,7 @@ --clr-lightgray: #A4B9C0; --clr-white: #FFF; --clr-black: #000; - --clr-red: #D03B2D; + --clr-red: #EF523B; --clr-green: #5AC358; --clr-yellow: #F8C84B;