From 6f88dd37c8998caf2bc64137be5c3e331d756f13 Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Sun, 13 Nov 2022 11:26:24 +0100 Subject: [PATCH] fix(browser): failed test icon color The failed test icon is currently incorrectly colored as `#00d6b2` instead of `#cc0000` (light schema) or `#ff4444` (dark schema). To fix this, ensure that the correct var is referenced. --- mocha.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mocha.css b/mocha.css index 87a4d22ef5..b4d7e5b207 100644 --- a/mocha.css +++ b/mocha.css @@ -193,7 +193,7 @@ body { display: block; float: left; margin-right: 5px; - color: var(--mocha-pass-icon-color); + color: var(--mocha-test-fail-icon-color); } #mocha .test pre.error {