From 303d31611e88ac7f2c71e278cec29f4273dc5627 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Thu, 16 Jan 2025 13:49:00 -0500 Subject: [PATCH] a11y: Update tags on plugins to be lighter color in dark mode (#6080) --- src/components/plugins-list/style.module.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/plugins-list/style.module.css b/src/components/plugins-list/style.module.css index fc7721b257..065a19689b 100644 --- a/src/components/plugins-list/style.module.css +++ b/src/components/plugins-list/style.module.css @@ -100,4 +100,8 @@ ul.pluginsList li p { .keyword { font-weight: 300; color: var(--ifm-color-gray-800); + + html[data-theme='dark'] & { + color: var(--ifm-color-gray-100); + } }