From 8c44427b2e0cd07996e24171bb678074015c7b70 Mon Sep 17 00:00:00 2001 From: zepp Date: Sat, 11 Jan 2025 17:51:45 -0500 Subject: [PATCH] update anchor element colors --- style/style.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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; }