From 150fe90728b1719b6a59e2ed058ec026d573d04b Mon Sep 17 00:00:00 2001 From: Shivaditya Meduri <77324692+shivaditya-meduri@users.noreply.github.com> Date: Thu, 18 Dec 2025 16:08:11 +0100 Subject: [PATCH] docs(style): fix link visibility in dark mode (#2804) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: link visibility in dark mode Hello, I noticed that links were using the same color as regular text making them indistinguishable in dark mode (default). This PR changes the color of links to a different color for better accessibility in dark more. This has been bugging me for a while, so I am creating this PR to fix this 😅. Signed-off-by: Shivaditya Meduri <77324692+shivaditya-meduri@users.noreply.github.com> --- docs/stylesheets/extra.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 28068c76..13c8deda 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -60,10 +60,10 @@ /* Links */ [data-md-color-scheme="slate"] a { - color: rgba(233, 219, 189, 0.90) !important; + color: rgba(88, 166, 255, 0.90) !important; } [data-md-color-scheme="slate"] a:hover { - color: rgba(233, 219, 189, 0.90) !important; + color: rgba(121, 192, 255, 0.90) !important; } /* Code blocks */