From 6c9b6a44de77a4b15267958a9e76a7f45bd6da4e Mon Sep 17 00:00:00 2001
From: Naman Sood <mail@nsood.in>
Date: Thu, 16 May 2024 16:41:24 -0400
Subject: [PATCH] fix contact method contrast in dark mode

Signed-off-by: Naman Sood <mail@nsood.in>
---
 css/style.css  | 2 +-
 css/style.scss | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/css/style.css b/css/style.css
index 07cc7af..ebd602c 100644
--- a/css/style.css
+++ b/css/style.css
@@ -187,7 +187,7 @@ body.blue-mode {
   width: max-content;
   opacity: 0;
   transition: all 0.2s ease;
-  color: #333;
+  color: var(--iconColor);
   font-size: 0.85rem;
 }
 .main .contact-methods a.contact-method:hover p {
diff --git a/css/style.scss b/css/style.scss
index dc85beb..f28e167 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -206,7 +206,7 @@ body {
 				width: max-content;
 				opacity: 0;
 				transition: all 0.2s ease;
-				color: #333;
+				color: var(--iconColor);
 				font-size: 0.85rem;
 			}