From ce7cac93cf9e226d9b0823f58a2f6732ffd6bf11 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Thu, 5 Jan 2023 16:51:46 +0100 Subject: [PATCH] Adjust styles Signed-off-by: Severin Kaderli --- static/styles.css | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/static/styles.css b/static/styles.css index a0ae429..2806b03 100644 --- a/static/styles.css +++ b/static/styles.css @@ -6,17 +6,17 @@ --font-sans-serif: sans-serif; - --color-background: #e5e5e5; - --color-text: #191919; - --link-color: #ffff00; + --color-background: hsl(220, 23%, 95%); + --color-text: hsl(234, 16%, 35%); + --link-color: hsl(22, 99%, 52%); } @media (prefers-color-scheme: DARK) { :root { - --color-background: #191919; - --color-background-accent: #2b2b2b; - --color-text: #e5e5e5; - --link-color: #ffff00; + --color-background: hsl(240, 21%, 15%); + --color-background-accent: hsl(240, 23%, 9%); + --color-text: hsl(226, 64%, 88%); + --link-color: hsl(23, 92%, 75%); } } @@ -37,6 +37,10 @@ body { font-size: 100%; } +a { + color: var(--link-color); +} + header, main, footer {