From e844ee507a1330db50e33615000eb8cfd7a849fc Mon Sep 17 00:00:00 2001 From: Ben Larson <10101828+ben-larson@users.noreply.github.com> Date: Sun, 16 May 2021 20:44:10 -0500 Subject: [PATCH] Tweak colors --- .dockerignore | 1 + src/styles/colors.css | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index 69750fb..1e5e073 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,2 @@ +.git .prettierrc diff --git a/src/styles/colors.css b/src/styles/colors.css index 0fb63b1..fca355c 100644 --- a/src/styles/colors.css +++ b/src/styles/colors.css @@ -5,7 +5,7 @@ --blue: #55f; --green: #171; --black: #333; - --white: #aaa; + --white: #ccc; --parchment: linear-gradient(65deg, #edc, #fed, #edc); @@ -20,7 +20,7 @@ @media (prefers-color-scheme: dark) { :root { - --parchment: linear-gradient(65deg, #000, #111, #000); + --parchment: linear-gradient(65deg, #050505, #1a1a1a, #050505); --text-color-primary: var(--white); --text-color-secondary: var(--gold); -- 2.45.2