From d83f19b1ca06126c369617079bc68bff826a5ed4 Mon Sep 17 00:00:00 2001 From: freakoverse Date: Wed, 21 Aug 2024 05:07:47 +0000 Subject: [PATCH 1/3] color adjustment --- src/styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/styles.css b/src/styles/styles.css index 412c8b4..d0565a4 100644 --- a/src/styles/styles.css +++ b/src/styles/styles.css @@ -535,7 +535,7 @@ a { } a:hover { - color: rgba(255, 115, 255, 0.75); + color: rgba(255, 115, 255, 0.85); text-decoration: underline; } -- 2.34.1 From 837be77d9c774f3c20ccd38f269d71c50bd4c435 Mon Sep 17 00:00:00 2001 From: freakoverse Date: Wed, 21 Aug 2024 05:10:00 +0000 Subject: [PATCH 2/3] color adjustment --- src/styles/nav.module.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/styles/nav.module.scss b/src/styles/nav.module.scss index 71efd72..29a7ee5 100644 --- a/src/styles/nav.module.scss +++ b/src/styles/nav.module.scss @@ -147,7 +147,7 @@ width: auto; padding: 10px 15px; border-radius: 10px; - color: rgba(255, 255, 255, 0.25); + color: rgba(255, 255, 255, 0.5); text-decoration: unset; font-weight: bold; transform: scale(1); @@ -158,7 +158,7 @@ &:hover { transition: ease 0.4s; - color: rgba(255, 255, 255, 0.75); + color: rgba(255, 255, 255, 0.85); box-shadow: 0 0 8px 0 rgb(0, 0, 0, 0.1); text-decoration: unset; @@ -208,7 +208,7 @@ height: auto; width: auto; border-radius: 10px; - color: rgba(255, 255, 255, 0.25); + color: rgba(255, 255, 255, 0.5); text-decoration: unset; font-weight: bold; transform: scale(1); @@ -263,13 +263,13 @@ .NavMainBottomInsideLink { transition: ease 0.4s; text-decoration: unset; - color: rgba(255, 255, 255, 0.25); + color: rgba(255, 255, 255, 0.5); font-weight: bold; padding: 5px 15px; &:hover { transition: ease 0.4s; - color: rgba(255, 255, 255, 0.75); + color: rgba(255, 255, 255, 0.85); text-decoration: unset; } -- 2.34.1 From 42d20857f5d8a130414b2434bb13a9abb3f6597b Mon Sep 17 00:00:00 2001 From: freakoverse Date: Wed, 21 Aug 2024 05:12:04 +0000 Subject: [PATCH 3/3] color adjustment --- src/styles/nav.module.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/nav.module.scss b/src/styles/nav.module.scss index 29a7ee5..9970eff 100644 --- a/src/styles/nav.module.scss +++ b/src/styles/nav.module.scss @@ -184,9 +184,9 @@ left: 0; background: linear-gradient( to top right, - #262626, #292929, - #262626 + #343434, + #292929 ); z-index: -1; border-radius: 10px; -- 2.34.1