From fba9fb9268a5f20242604197b5fed3ac7d7b67e8 Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Sun, 21 Mar 2021 10:26:18 +0000
Subject: [PATCH] Adjusted Link Colors

---
 assets/css/style.css |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/assets/css/style.css b/assets/css/style.css
index 1be6a4d..3358a42 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -14,6 +14,7 @@
     --tag-color: #424242;
     --blockquote-text-color: #858585;
     --blockquote-border-color: #dfe2e5;
+    --link-color: #0366d7;
     --thumbnail-height: 15em;
     scroll-padding-top: 100px;
 }
@@ -32,6 +33,7 @@
     --tag-color: rgb(191, 191, 191);
     --blockquote-text-color: #808080;
     --blockquote-border-color: #424242;
+    --link-color: #58a6fe;
 }
 
 html {
@@ -56,6 +58,7 @@
 
 a {
     text-decoration: none;
+    color: var(--link-color);
 }
 
 blockquote {
@@ -100,12 +103,11 @@
 a:link,
 a:visited {
     opacity: 1;
-    color: var(--tag-color);
 }
 
 a:hover,
 a:active {
-    color: #2660ab;
+    color: var(--link-color);
 }
 
 /*basic styles ends*/

--
Gitblit v1.10.0