mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
Merge pull request #121 from nbtca/copilot/fix-markdown-hyperlink-highlight
Improve markdown hyperlink visibility with high-contrast colors
This commit is contained in:
commit
cd04361535
2 changed files with 18961 additions and 0 deletions
18926
package-lock.json
generated
Normal file
18926
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -53,6 +53,41 @@ body.theme-dark .astro-code span {
|
|||
background-color: var(--gray-primary) !important;
|
||||
}
|
||||
|
||||
/* Improve markdown hyperlink visibility */
|
||||
.prose a {
|
||||
color: #0071e3 !important;
|
||||
text-decoration: underline;
|
||||
text-decoration-color: rgba(0, 113, 227, 0.4);
|
||||
text-underline-offset: 2px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.prose a:hover {
|
||||
color: #0077ed !important;
|
||||
text-decoration-color: #0077ed;
|
||||
}
|
||||
|
||||
.prose a:visited {
|
||||
color: #551A8B !important;
|
||||
text-decoration-color: rgba(85, 26, 139, 0.4);
|
||||
}
|
||||
|
||||
/* Dark mode link styles */
|
||||
body.theme-dark .prose a {
|
||||
color: #2997ff !important;
|
||||
text-decoration-color: rgba(41, 151, 255, 0.4);
|
||||
}
|
||||
|
||||
body.theme-dark .prose a:hover {
|
||||
color: #409cff !important;
|
||||
text-decoration-color: #409cff;
|
||||
}
|
||||
|
||||
body.theme-dark .prose a:visited {
|
||||
color: #bf5af2 !important;
|
||||
text-decoration-color: rgba(191, 90, 242, 0.4);
|
||||
}
|
||||
|
||||
ul,
|
||||
ol,
|
||||
li,
|
||||
|
|
|
|||
Loading…
Reference in a new issue