From 7d4a9ee7aa44d718e47c139dd9dc17042f1e2337 Mon Sep 17 00:00:00 2001 From: Amaryllis Kulla Date: Fri, 8 Sep 2023 23:59:46 +0200 Subject: [PATCH] Change active link color to a light orange --- css/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index 858de1c..8ef1398 100644 --- a/css/style.css +++ b/css/style.css @@ -29,22 +29,22 @@ /* You can change the background, text color and active color of the menu by changing the color codes. */ --menu_background_color: #1d1e24; --menu_text_color: #fff; - --menu_active_text_color: #d7e04f; + --menu_active_text_color: #e07d4f; /* You can change the button's background, text color and active color by changing the color codes. */ --button_background_color: #1d1e24; --button_text_color: #fff; - --button_text_hover_color: #d7e04f; + --button_text_hover_color: #e07d4f; /* You can change the background, text color and active color of the text field by changing the color codes. */ --textarea_background_color: #1d1e24; --textarea_text_color: #fff; - --textarea_link_text_color: #d7e04f; + --textarea_link_text_color: #e07d4f; /* You can change the background, text color and active color of the footer area by changing the color codes. */ --footer_background_color: #1d1e24; --footer_text_color: #fff; - --footer_link_text_color: #d7e04f; + --footer_link_text_color: #e07d4f; } /* Basic Codes */