From 258ac34a2cbcb980ef5758bd2f8d5f20ade828b4 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Tue, 17 May 2022 23:04:45 +0200 Subject: [PATCH] Slightly adjust light-gray color on dark mode --- src/components/Colors.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Colors.tsx b/src/components/Colors.tsx index cd9a87c..40ec14b 100644 --- a/src/components/Colors.tsx +++ b/src/components/Colors.tsx @@ -36,7 +36,7 @@ function generateStyles(scheme: ColorSchemeName) { backgroundColor: `${THEME_COLOR}${scheme === 'dark' ? '26' : '16'}`, }, imageBackground: { - backgroundColor: scheme === 'dark' ? '#161616' : '#eee', + backgroundColor: scheme === 'dark' ? '#191919' : '#eee', borderWidth: 0.5, borderColor: scheme === 'dark' ? '#262626' : '#ddd', }, @@ -50,7 +50,7 @@ function generateStyles(scheme: ColorSchemeName) { backgroundColor: scheme === 'dark' ? '#ffffff09' : '#00000009', }, input: { - backgroundColor: scheme === 'dark' ? '#161616' : '#f3f3f3', + backgroundColor: scheme === 'dark' ? '#191919' : '#f3f3f3', color: scheme === 'dark' ? '#fff' : '#000', }, stackHeader: { @@ -63,7 +63,7 @@ function generateStyles(scheme: ColorSchemeName) { backgroundColor: scheme === 'dark' ? '#333' : '#eee', }, filter: { - backgroundColor: scheme === 'dark' ? '#161616' : '#f3f3f3', + backgroundColor: scheme === 'dark' ? '#191919' : '#f3f3f3', }, }); }