From a14c9262843ae904b4ad4651d5d1ad1b3e035be5 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Sat, 6 May 2023 01:43:47 +0200 Subject: [PATCH] Website: Style tweaks in dark mode Increase contrast in dark mode, and increase line height for more readability. --- web/project-website/static/custom.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/web/project-website/static/custom.css b/web/project-website/static/custom.css index c859d114..e8bdf4c1 100644 --- a/web/project-website/static/custom.css +++ b/web/project-website/static/custom.css @@ -73,7 +73,7 @@ --header-background: none; --header-font-color: #ffffff; - --body-background: #343a40; + --body-background: #1b1d1f; --body-font-color: #ced3d8; --mark-color: #ffab00; @@ -99,7 +99,7 @@ --header-background: none; --header-font-color: #ffffff; - --body-background: #343a40; + --body-background: #1a1d20; --body-font-color: #ced3d8; --mark-color: #ffab00; @@ -111,7 +111,7 @@ --link-color-visited: #8982c9; --accent-color: #2b3035; - --accent-color-lite: #3d454d; + --accent-color-lite: #272c31; --control-icons: #b2bac1; @@ -165,3 +165,7 @@ body { .flamenco-download-link { font-family: var(--font-family-mono); } + +article p { + line-height: 28px; +}