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