From 01277d0c9c3ec8bc3752ffd51904154a2b6b3a8c Mon Sep 17 00:00:00 2001 From: Chad Date: Tue, 17 Oct 2023 04:20:50 -0700 Subject: [PATCH] Color Correction (#7) * Update README.md * Alter colors for outside of Night Light. --- README.md | 2 +- pages/helpers/banner.css | 14 +++++++------- pages/helpers/dark.css | 2 +- pages/helpers/main.css | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 36dec6b..9827b7a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# My Website +# My Website - Hyperling.com Custom website rather than using WordPress or anything else that handles the code for you. diff --git a/pages/helpers/banner.css b/pages/helpers/banner.css index 912de36..a0ef7d7 100644 --- a/pages/helpers/banner.css +++ b/pages/helpers/banner.css @@ -2,22 +2,22 @@ /* Shared Attributes */ .banner-top, .banner-middle, .banner-bottom { - color: white; - width: 100%; - height: 69px; - font-size: 50px; + color: white; + width: 100%; + height: 69px; + font-size: 50px; text-align: center; } /* Specific Attributes */ .banner-top { - background-color: #6633FF; + background-color: #660099; } .banner-middle { - background-color: #FF9900; + background-color: #FF9900; } .banner-bottom { - background-color: #339933; + background-color: #33CC33; } diff --git a/pages/helpers/dark.css b/pages/helpers/dark.css index 6763fae..9ea5042 100644 --- a/pages/helpers/dark.css +++ b/pages/helpers/dark.css @@ -12,7 +12,7 @@ } h1,h2,h3,h4,h5,h6 { - color: #6633FF; + color: #660099; } .header { diff --git a/pages/helpers/main.css b/pages/helpers/main.css index 50646cf..0a9a6bf 100644 --- a/pages/helpers/main.css +++ b/pages/helpers/main.css @@ -62,12 +62,12 @@ /** Objects which need borders **/ .border { - border: 1px solid #339933; + border: 1px solid #33CC33; } /* Also have this apply to a table's cells. */ .border * th,td { - border: 1px solid #339933; + border: 1px solid #33CC33; } /** Format tables and allow contents to be broken up. **/