From e9160c83069001e4a44140ad0f221396f5c375cb Mon Sep 17 00:00:00 2001 From: Brennan Date: Wed, 1 Apr 2026 19:20:19 -0500 Subject: [PATCH] Adjust Okaidia Prism theme color for WCAG contrast compliance Before (fails WCAG AA and AAA): * Background: `#272822` * Foreground: `#F92672` https://webaim.org/resources/contrastchecker/?fcolor=F92672&bcolor=272822 After (passes WCAG AA): * Background: `#272822` * Foreground: `#FF4F8F` https://webaim.org/resources/contrastchecker/?fcolor=FF4F8F&bcolor=272822 --- src/themes/okaidia.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/themes/okaidia.css b/src/themes/okaidia.css index 44ead11498..43fd2cb229 100644 --- a/src/themes/okaidia.css +++ b/src/themes/okaidia.css @@ -71,7 +71,7 @@ pre[class*="language-"] { .token.constant, .token.symbol, .token.deleted { - color: #f92672; + color: #ff4f8f; } .token.boolean,