From patchwork Mon Oct 21 10:24:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 2205 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 64D926139C for ; Mon, 21 Oct 2019 12:25:08 +0200 (CEST) Received: from pendragon.ideasonboard.com (143.121.2.93.rev.sfr.net [93.2.121.143]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id DCB2DF94 for ; Mon, 21 Oct 2019 12:25:07 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1571653508; bh=fPNrDv1imK1jLgXPDVmfE+6ZHf0Krd3uVr0BRAVAJ/U=; h=From:To:Subject:Date:In-Reply-To:References:From; b=sSnp6g1KjhI6a2XuBJh5WgDHnccVJVuzoftpmXedbWmJh8B8w0kvhsS0sZEHvc73I KQ4sdlZNDz2QDkH1O6HS9s5gGCzGBz4SHbfj3EOLG+EBxhjEvO1ZvY0RIZDOSzCyUR 1Kq6oukmk+/5PuAekFOKyaZvl8+xeqt3FpGsW2rY= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 21 Oct 2019 13:24:52 +0300 Message-Id: <20191021102453.26471-7-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191021102453.26471-1-laurent.pinchart@ideasonboard.com> References: <20191021102453.26471-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 7/8] Documentation: theme: css: Make text darker X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Oct 2019 10:25:09 -0000 The text is currently rendered as a 50% gray, which is a bit painful to read in low light conditions. Make it darker. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- Documentation/theme/static/css/theme.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Documentation/theme/static/css/theme.css b/Documentation/theme/static/css/theme.css index 4901bbf564f7..60f3510d88fa 100644 --- a/Documentation/theme/static/css/theme.css +++ b/Documentation/theme/static/css/theme.css @@ -6,7 +6,7 @@ html { } body { - color: rgb(0, 0, 0, 0.5); + color: rgb(0, 0, 0, 0.65); font-family: Arial, sans-serif; margin: 0px; } @@ -217,7 +217,6 @@ div#content > div.block { } div#content > div.block h1 { - color: black; font-size: 40px; margin-top: 0px; text-align: left;