From b9d2f286d8cdd963bc928a9bcacc088b42ca996c Mon Sep 17 00:00:00 2001 From: haykam821 <24855774+haykam821@users.noreply.github.com> Date: Mon, 1 Mar 2021 10:43:51 -0500 Subject: [PATCH] Make the dark theme less warm --- lib/theme.js | 8 ++++---- public/manifest.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/theme.js b/lib/theme.js index 22c5690..0bb3b09 100644 --- a/lib/theme.js +++ b/lib/theme.js @@ -16,10 +16,10 @@ export const lightTheme = { export const darkTheme = { name: "dark", colors: { - accent: "#78ab32", - background: "#121212", - backgroundMuted: "#1f1f1f", - primary: "#fff", + accent: "#79a042", + background: "#292c33", + backgroundMuted: "#1f2027", + primary: "#ddd", primaryMuted: "#888", }, }; diff --git a/public/manifest.json b/public/manifest.json index d63d0dc..48b98ac 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -17,6 +17,6 @@ "display": "standalone", "scope": "/", "start_url": "/?manifest=true", - "background_color": "#121212", - "theme_color": "#121212" + "background_color": "#292c33", + "theme_color": "#292c33" }