From a216193d37f9985f8dc2d44789e4423749cb0066 Mon Sep 17 00:00:00 2001 From: Noelle Leigh <5957867+noelleleigh@users.noreply.github.com> Date: Thu, 30 Oct 2025 06:59:46 -0400 Subject: [PATCH] Make compliant software legible in dark mode Since the `background-color` of `.compliant-software span` is hard-coded to a light color, the text needs to be hard-coded to a dark `color`, otherwise it can't be read when the browser is in dark mode due to the rules in `fox.css`. I selected the color used for the text color in light mode from `fox.css`. --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index ad29665..b1dccef 100644 --- a/index.html +++ b/index.html @@ -56,6 +56,7 @@ padding: 3px; margin: 2px; border-radius: 3px; + color: var(--oc-gray-9); background-color: #f1f3f5; }