From de0f9ba74d3cae1373e0b3d7b95196b1eefe6e1d Mon Sep 17 00:00:00 2001 From: Xavi Aracil Date: Wed, 3 Jul 2024 18:06:20 +0200 Subject: [PATCH] Color contrast in table headers --- src/1edtech/styles/1edtech-base.css.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/1edtech/styles/1edtech-base.css.js b/src/1edtech/styles/1edtech-base.css.js index f7bf3b58fc..e656440e8f 100644 --- a/src/1edtech/styles/1edtech-base.css.js +++ b/src/1edtech/styles/1edtech-base.css.js @@ -16,7 +16,7 @@ export default css`@charset "UTF-8"; --fgclr3: rgba(70, 130, 180, 1); --fgclr4: rgba(40, 100, 150, 1); --gray: rgba(200, 200, 200, 0.9); - --lightgray: rgba(240, 240, 240, 0.9); + --lightgray: rgba(240, 240, 240, 1); --lightestgray: rgba(250, 250, 250, 0.8); --darkgray: rgba(180, 180, 180, 1); } @@ -230,7 +230,7 @@ td, th { th { font-weight: bold; background-color: var(--fgclr3); - color: white; + color: var(--lightgray); padding: 0.6em; }