update anchor element colors

This commit is contained in:
emma 2025-01-11 17:51:45 -05:00
parent d414913906
commit 8c44427b2e
1 changed files with 6 additions and 3 deletions

View File

@ -13,6 +13,9 @@
--body-background-color: #ffcccc; --body-background-color: #ffcccc;
--scroll-gutter: #eb76ff88; --scroll-gutter: #eb76ff88;
--scroll-bar: #ffa8ec88; --scroll-bar: #ffa8ec88;
--link-hover: #FF1493;
--link-visited: #8A2BE2;
--link-color: #4B0082;
} }
@ -126,16 +129,16 @@ section {
} }
a { a {
color: #6e5773; color: var(--link-color);
text-decoration: none; text-decoration: none;
} }
a:visited { a:visited {
color: #9a47cb; color: var(--link-visited);
} }
a:hover { a:hover {
color: #4f323b; color: var(--link-hover);
text-decoration: underline; text-decoration: underline;
} }