From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM autolearn=no autolearn_force=no version=3.4.6 Received: from zxce3.. (unknown [68.183.184.174]) by gnuweeb.org (Postfix) with ESMTPSA id 3F55382F6A; Sun, 29 Jan 2023 11:47:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1674992863; bh=JKXj3AeJVwSKN5djUywhwJFNHxz7fQ2rjhnWQf+Prio=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Sy6HI2lMYBbM1PzF6+Gg7o/JXm/ArDF2jCFIuklr5KkfuDS7ZXEdqOpNr3cnIiDSJ cJBWIpKWP0zM4xV1WbujrFmTugME7FFvyKOnota/8QxeH7IpaMYmPxtFnudy5EJXkR Jr1iAdqwU0blmXD7X2V8BYMCufupnqdFKIcbbGZ+l3ms4CCLuptwK5Co3TsID/rR6F o60VopR/je4Sv8c2zl3IklXCQ5UcJcJgIpEkAS0+5H7QwXzILkG0bzlrzaacyHeLxR S54Dbl6dbS07JLjvEGp91f0IGUR0H8aZoRgp5wrwSAwUYjvDc99YQLemgW+Ix3pib/ AanbCiITWUjfw== From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH Website v2 1/2] style.css: Fix background and foreground colors Date: Sun, 29 Jan 2023 18:47:26 +0700 Message-Id: <20230129114727.33428-2-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230129114727.33428-1-zxce3@gnuweeb.org> References: <20230129114727.33428-1-zxce3@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Memet Zx Text that has low contrast is difficult or unreadable for most users Signed-off-by: Memet Zx --- public/assets/css/style.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/public/assets/css/style.css b/public/assets/css/style.css index b5e86cb..060e58c 100644 --- a/public/assets/css/style.css +++ b/public/assets/css/style.css @@ -10,7 +10,7 @@ body { font-family: oxygen, sans-serif; background: #F0EDE3; - color: #33290A; + color: #000; } #wrapper { @@ -56,7 +56,7 @@ body { } #banner li>a { - color: #B39223; + color: #795E01; white-space: nowrap; font-size: 90%; } @@ -116,12 +116,12 @@ a:visited { } a:hover { - color: #B39223; + color: #795E01; text-decoration: none; } a:active { - color: #B39223; + color: #795E01; text-decoration: none; } @@ -150,7 +150,7 @@ hr { #latest { float: right; background: #FFD133; - box-shadow: -0.1em -0.3em 0.5em #B39223 inset; + box-shadow: -0.1em -0.3em 0.5em #795E01 inset; color: #4C3D00; border-radius: 0.5em; margin: 1em 2.2em 4em 0; @@ -208,7 +208,7 @@ hr { float: right; text-align: center; background: #F0EDE3; - color: #827A5E; + color: #3E3000; border: thin solid #CCC8B8; box-shadow: 0 0.1em 0.2em #CCC8B8 inset; border-radius: 0.5em; @@ -312,12 +312,12 @@ pre>code { } article h1 { - color: #33290A; + color: #000; margin: 0 0 0.9em 0; } article h1>a { - color: #33290A !important; + color: #000 !important; transition: none; } @@ -410,7 +410,7 @@ a.readmore:active { #contentinfo { clear: both; text-align: center; - color: #827A5E; + color: #3E3000; margin: 2em auto; padding-top: 0.5em; } @@ -450,4 +450,4 @@ th { td { border: 1px solid; padding: 5px; -} \ No newline at end of file +} -- Memet Zx