From e64ff99d8d411df6293c96351819735040735c95 Mon Sep 17 00:00:00 2001 From: alyshkalia <162925735+alyshkalia@users.noreply.github.com> Date: Thu, 11 Apr 2024 20:31:47 -0400 Subject: [PATCH] Update style.css Changed the colors of p, h2, and .dark h2 and added a ".dark p" selector in order to increase the contrast between the background and the text for readability/accessibility. --- app/export-for-web-template/style.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/export-for-web-template/style.css b/app/export-for-web-template/style.css index 112959c5..4ad18659 100644 --- a/app/export-for-web-template/style.css +++ b/app/export-for-web-template/style.css @@ -31,7 +31,7 @@ h2 { font-style: italic; font-family: sans-serif; font-weight: lighter; - color: #BBB; + color: #545454; } .header { @@ -115,7 +115,7 @@ h2 { p { font-size: 13pt; - color: #888; + color: #000; line-height: 1.7em; font-weight: lighter; } @@ -260,7 +260,7 @@ body.dark { } .dark h2 { - color: #666; + color: #999; } .dark .container { @@ -271,6 +271,10 @@ body.dark { background: black; } +.dark p { + color: #efefef; +} + .dark a { color: #cc8f1a; }