From c80ce3518530a08b79cbc2c36743495207c3265b Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Wed, 23 Nov 2022 17:59:30 -0500 Subject: [PATCH] Attempt to fix colors on navbar --- assets/styles/navbar.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/styles/navbar.css b/assets/styles/navbar.css index 80d8bfb..4979bd2 100644 --- a/assets/styles/navbar.css +++ b/assets/styles/navbar.css @@ -3,7 +3,7 @@ ul { margin: 0; padding: 0; overflow: hidden; - background-color: rgb(0, 0, 0); + background-color: hsl(0, 0%, 0%); position: fixed; top: 0; width: 100%; @@ -22,11 +22,11 @@ ul { } li a:hover:not(.active) { - background-color: #080754; + background-color: hsl(241, 85%, 18%); } .active { - background-color: #1b0aff; + background-color: hsl(244, 100%, 52%); } body{ margin: 0px;