fix: markdown link color

This commit is contained in:
kangfenmao 2024-08-04 13:30:15 +08:00
parent 8a0e2890dd
commit cbd9f60cfc
2 changed files with 3 additions and 1 deletions

View File

@ -33,6 +33,7 @@
--color-icon-white: #ffffff; --color-icon-white: #ffffff;
--color-border: #ffffff20; --color-border: #ffffff20;
--color-error: #f44336; --color-error: #f44336;
--color-link: #1677ff;
--color-code-background: #323232; --color-code-background: #323232;
--color-scrollbar-thumb: rgba(255, 255, 255, 0.15); --color-scrollbar-thumb: rgba(255, 255, 255, 0.15);
--color-scrollbar-thumb-hover: rgba(255, 255, 255, 0.3); --color-scrollbar-thumb-hover: rgba(255, 255, 255, 0.3);
@ -79,6 +80,7 @@ body[theme-mode='light'] {
--color-icon-white: #000000; --color-icon-white: #000000;
--color-border: #00000028; --color-border: #00000028;
--color-error: #f44336; --color-error: #f44336;
--color-link: #1677ff;
--color-code-background: #e3e3e3; --color-code-background: #e3e3e3;
--color-scrollbar-thumb: rgba(0, 0, 0, 0.15); --color-scrollbar-thumb: rgba(0, 0, 0, 0.15);
--color-scrollbar-thumb-hover: rgba(0, 0, 0, 0.3); --color-scrollbar-thumb-hover: rgba(0, 0, 0, 0.3);

View File

@ -145,7 +145,7 @@
} }
a { a {
color: var(--color-primary); color: var(--color-link);
text-decoration: none; text-decoration: none;
&:hover { &:hover {