From e1c43f3f9276325b1310b3e2e4469ddfe2b29406 Mon Sep 17 00:00:00 2001 From: AngeloR Date: Mon, 12 Jan 2026 10:05:05 -0500 Subject: [PATCH] update mytheme --- themes/custom-mytheme/static/css/style.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/themes/custom-mytheme/static/css/style.css b/themes/custom-mytheme/static/css/style.css index 0e2c2e3..2d0c5c5 100644 --- a/themes/custom-mytheme/static/css/style.css +++ b/themes/custom-mytheme/static/css/style.css @@ -4,6 +4,8 @@ --accent: #0f2a57; --border: #d7d7d0; --muted: #606060; + --link: #0f2a57; + --link-hover: #1c3f73; } * { @@ -184,11 +186,16 @@ body { } .post-content a { - color: var(--accent); + color: var(--link); text-decoration: underline; text-decoration-thickness: 1px; } +.post-content a:hover, +.post-content a:focus { + color: var(--link-hover); +} + .post-content pre { padding: 1rem; border: 1px solid var(--border); -- 2.25.1