From fef6c4c8cb22a45fa4d3dff016618a3d10fdd552 Mon Sep 17 00:00:00 2001 From: Jack Howard Date: Fri, 2 May 2025 10:52:38 -0700 Subject: [PATCH] fix(theme): improve color contrast of live code block header (#11120) fix: Ensure accessibility of live code block contrast with background update --- .../src/theme/Playground/Header/styles.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docusaurus-theme-live-codeblock/src/theme/Playground/Header/styles.module.css b/packages/docusaurus-theme-live-codeblock/src/theme/Playground/Header/styles.module.css index 092af7825d..39214d88e9 100644 --- a/packages/docusaurus-theme-live-codeblock/src/theme/Playground/Header/styles.module.css +++ b/packages/docusaurus-theme-live-codeblock/src/theme/Playground/Header/styles.module.css @@ -16,6 +16,6 @@ } .playgroundHeader:first-of-type { - background: var(--ifm-color-emphasis-600); + background: var(--ifm-color-emphasis-700); color: var(--ifm-color-content-inverse); }