From bb99c7b77f65da8426caf9beb629bf3385eaf410 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Sat, 15 Jun 2019 15:39:11 +0100 Subject: [PATCH] Improve the contrast between the background and text (#74) Change text color from `#c6cddb` to `#e8eef2` in order to improve accessibility. Hermit theme now passes WCAG level AAA (contrast > 7.0). --- assets/scss/_predefined.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scss/_predefined.scss b/assets/scss/_predefined.scss index 41c4d2b..56cc9f1 100644 --- a/assets/scss/_predefined.scss +++ b/assets/scss/_predefined.scss @@ -1,7 +1,7 @@ // Colors // $theme: #018574; -$text: #c6cddb; +$text: #e8eef2; $light-grey: #494f5c; $dark-grey: #3B3E48; $highlight-grey: #7d828a;