From f23c9eb83e0774c1feba5bfa0d8179633b1aae13 Mon Sep 17 00:00:00 2001 From: Anand Chowdhary Date: Mon, 7 Dec 2020 13:36:21 +0530 Subject: [PATCH] :lipstick: Update colors for dark theme --- src/components/Nav.svelte | 2 +- static/global.css | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Nav.svelte b/src/components/Nav.svelte index 86dbfaa..ebe67d7 100644 --- a/src/components/Nav.svelte +++ b/src/components/Nav.svelte @@ -16,7 +16,7 @@ @media (prefers-color-scheme: dark) { nav { - background-color: #004f4b; + background-color: #002b29; } } diff --git a/static/global.css b/static/global.css index 40e4eaf..91cf79a 100644 --- a/static/global.css +++ b/static/global.css @@ -131,10 +131,10 @@ dl dd { @media (prefers-color-scheme: dark) { body { - background-color: #001f1e; - color: #f7ffff; + background-color: #001716; + color: #f0ffff; } article { - background-color: #003330; + background-color: #002b29; } }