From b0a0fb808c6d771f198fca120527222f92edaa57 Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Mon, 14 Nov 2022 19:36:24 +0100 Subject: [PATCH] fix(browser): failed test icon color (#4946) The failed test icon is currently incorrectly colored as `#00d6b2` instead of `#cc0000` (light schema) or `#ff4444` (dark schema). --- 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 {