From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS12876 51.158.128.0/17 X-Spam-Status: No, score=0.1 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_PBL,SPF_HELO_NONE, SPF_PASS shortcircuit=no autolearn=no autolearn_force=no version=3.4.2 Received: from ark.scaleway.mowzer.co.za (ark.scaleway.mowzer.co.za [51.158.166.135]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 462E01F5AE for ; Sun, 16 May 2021 08:47:12 +0000 (UTC) From: Yaseen Mowzer DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mowzer.co.za; s=mail; t=1621154830; bh=f3ICXolGTrDOKr3EKKJ+ANzPBj5sC4pEcHI19MfDcME=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gsLlHuVKi/GAqCubapkH4/E5ddHpKsC0X9nWEg+wHbf7pAyGkVIT2OcdIW9kVWQLU PijNev+MT3n+UvvU9LsKLtjf1TdLpsZ0bzvs/nLthVeuqCmtXPhx8seErfQv5wHhkN dqIZ+akAM0mHh5F+npUr+pabNBK+Y/pqJreiGaieBG9jOl4afYZKr8G6+tke8p03ct 0epKQ8z0ZbhXO/aeTTqKY41VQhE4LZZ/1b3C48ie0iVqIo2XXdTumW7lcic1o3FMf9 Vrsq6gtFJ/ShRsjRWG+37+T58HDdopD3D1uc0uYHE1N2xwfg5QHUsORZc9E1fNBswR vLWtAuEJ2Luxg== To: meta@public-inbox.org Cc: Yaseen Mowzer Subject: [PATCH v2] contrib/css/216light: increase contrast of normal text Date: Sun, 16 May 2021 10:43:52 +0200 Message-Id: <20210516084351.1157893-1-yaseen@mowzer.co.za> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210516082059.1000966-1-yaseen@mowzer.co.za> References: <20210516082059.1000966-1-yaseen@mowzer.co.za> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: On my monitor #333 on #fff is a little bit hard to read. I think normal text should just be #000. The head style uses the contrast between #333 and #000 for emphasis. To preserve the emphasis `font-weight: bold` was added to the head style. --- I changed my mind about the head style. I think we should make it bold instead of loosing the emphasis. This is more consitent with what git diff does. contrib/css/216light.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/css/216light.css b/contrib/css/216light.css index c66cfdfe..c68ca9ce 100644 --- a/contrib/css/216light.css +++ b/contrib/css/216light.css @@ -4,7 +4,7 @@ * Suitable for print, and blinding people with brightness. * Haphazardly thrown together because bright colors hurt my eyes */ -* { background:#fff; color:#333 } +* { background:#fff; color:#000 } /* * Underlined links add visual noise which make them hard-to-read. @@ -22,7 +22,7 @@ a:visited { color:#808 } */ *.add { color:#060 } *.del {color:#900 } -*.head { color:#000 } +*.head { color:#000; font-weight:bold } *.hunk { color:#960 } /* -- 2.31.1