aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-05-21 20:57:06 -0500
committerChristian Cleberg <[email protected]>2025-05-21 20:57:06 -0500
commitc2224fe778cabcb38d4ff767749e175c0ffd8995 (patch)
treeb6970251afc15d55a4bceef9de9ab93173c1f5c8
parent84673c9177b50483e026f1243ed8ed1ade646f35 (diff)
downloadcleberg.net-c2224fe778cabcb38d4ff767749e175c0ffd8995.tar.gz
cleberg.net-c2224fe778cabcb38d4ff767749e175c0ffd8995.tar.bz2
cleberg.net-c2224fe778cabcb38d4ff767749e175c0ffd8995.zip
feat: update color scheme and link hover effect
-rw-r--r--theme/static/styles.css8
1 files changed, 5 insertions, 3 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css
index dbbeb70..9a36554 100644
--- a/theme/static/styles.css
+++ b/theme/static/styles.css
@@ -371,7 +371,9 @@ a:visited {
}
a:hover {
- text-decoration: underline;
+ background: var(--link);
+ color: var(--bg);
+ text-decoration: none;
}
img {
@@ -528,8 +530,8 @@ span.tag::before {
--bg: #141617;
--bg-bright: #191c1d;
--fg: #b2aea9;
- --link: aqua;
- --code: yellow;
+ --link: yellow;
+ --code: red;
--border: #333;
}
}