From 682c26f977700a7b67afd8832c8d6ec6a27b5d0c Mon Sep 17 00:00:00 2001 From: Aaron Bushnell Date: Thu, 30 May 2024 13:03:31 -0400 Subject: [PATCH] Ensure `prose`-based strong tag is readable in dark mode --- resources/css/dark.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/css/dark.css b/resources/css/dark.css index c2759e9a09..3ff7632b12 100644 --- a/resources/css/dark.css +++ b/resources/css/dark.css @@ -1,7 +1,7 @@ .prose { @apply dark:text-dark-150; - :where(h2), :where(h3) { + :where(h2), :where(h3), :where(strong) { &:not(:where([class~=not-prose] *)) { @apply dark:text-dark-100; }