From d3ea270e1ed3acf8caee3436b1f225a9cd9ebeda Mon Sep 17 00:00:00 2001 From: Jordan Labrosse Date: Tue, 2 Sep 2025 13:22:41 +0200 Subject: [PATCH] style: fix link color not changed in dark --- .../static/css/scss/themes/_dark-mode.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/themes/conventional-commits/static/css/scss/themes/_dark-mode.scss b/themes/conventional-commits/static/css/scss/themes/_dark-mode.scss index 3f17050..b1f6bc6 100644 --- a/themes/conventional-commits/static/css/scss/themes/_dark-mode.scss +++ b/themes/conventional-commits/static/css/scss/themes/_dark-mode.scss @@ -185,6 +185,11 @@ html.theme-dark .markdown-body { fill: var(--text-secondary); } +// Fix hardcoded white text colors +.theme-dark .no-style-a { + color: var(--text-primary) !important; +} + // Netlify badge theme switching .netlify-badge-dark { display: none;