From d7d226843ef26a7d7e6b3e5eb6c88769b5f59576 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 22 May 2021 10:31:17 +1000 Subject: [PATCH] improve type answer legibility https://forums.ankiweb.net/t/accessibility-suggestion-correct-answer-text-contrast-in-dark-mode/10105 There's probably more that could be done here, but that can probably wait for #1068 --- qt/aqt/data/web/css/reviewer.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qt/aqt/data/web/css/reviewer.scss b/qt/aqt/data/web/css/reviewer.scss index 216d63f53..1d35ef397 100644 --- a/qt/aqt/data/web/css/reviewer.scss +++ b/qt/aqt/data/web/css/reviewer.scss @@ -53,14 +53,17 @@ img { } .typeGood { - background: #0f0; + background: #afa; + color: black; } .typeBad { - background: #f00; + color: black; + background: #faa; } .typeMissed { + color: black; background: #ccc; }