docs(style): fix link visibility in dark mode (#2804)

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>
This commit is contained in:
Shivaditya Meduri
2025-12-18 16:08:11 +01:00
committed by GitHub
parent 595115d892
commit 150fe90728
+2 -2
View File
@@ -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 */