From cdd300ffcfe685dfd5132fea0721f572af16c3b5 Mon Sep 17 00:00:00 2001 From: Grzegorz Szymaszek Date: Mon, 30 Dec 2019 12:47:54 +0100 Subject: [PATCH 1/2] Make the primary text colour easier to read Currently the primary text is coloured in relatively light gray. This commit changes it to be substantially darker and, hopefully, easier to read. --- _sass/variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/variables.scss b/_sass/variables.scss index 18f6b16..401ad2e 100644 --- a/_sass/variables.scss +++ b/_sass/variables.scss @@ -11,7 +11,7 @@ $color-page-background: #ffffff; $color-page-frame: #f8f8f8; $color-page-border: #e8e8e8; -$color-text-primary: #727272; +$color-text-primary: #111111; $color-text-secondary: #444444; $color-text-code: #333333; $color-text-bold: #222222; From acb08d45c8bf679f7250bbc778408e72ddf4d36b Mon Sep 17 00:00:00 2001 From: Grzegorz Szymaszek Date: Tue, 31 Dec 2019 13:41:09 +0100 Subject: [PATCH 2/2] Make the headers darker and the primary text lighter --- _sass/variables.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_sass/variables.scss b/_sass/variables.scss index 401ad2e..f8008af 100644 --- a/_sass/variables.scss +++ b/_sass/variables.scss @@ -11,15 +11,15 @@ $color-page-background: #ffffff; $color-page-frame: #f8f8f8; $color-page-border: #e8e8e8; -$color-text-primary: #111111; -$color-text-secondary: #444444; -$color-text-code: #333333; -$color-text-bold: #222222; +$color-text-primary: #2a2a2a; +$color-text-secondary: #222222; +$color-text-code: #333344; +$color-text-bold: #111111; $color-text-highlight: #ffff00; // Color mappings $color-text-h1: $color-text-bold; -$color-text-h2: $color-text-code; +$color-text-h2: $color-text-secondary; $color-text-h3: $color-text-secondary; $color-text-h4: $color-text-secondary; $color-text-h5: $color-text-secondary;