mirror of
https://github.com/docling-project/docling.git
synced 2026-05-17 13:10:38 +00:00
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:
committed by
GitHub
parent
595115d892
commit
150fe90728
Vendored
+2
-2
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user