From aeb83cbed903df6fcec8e44a8ce1471bf699b51c Mon Sep 17 00:00:00 2001 From: miyasan_0301 Date: Tue, 26 Oct 2021 17:45:38 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20=E3=82=AB=E3=83=A9=E3=83=BC?= =?UTF-8?q?=E3=81=AE=E8=A8=AD=E5=AE=9A=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/constants/Colors.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/constants/Colors.ts b/src/constants/Colors.ts index 7509284..12c3c9a 100644 --- a/src/constants/Colors.ts +++ b/src/constants/Colors.ts @@ -1,19 +1,24 @@ const tintColorLight = "#2f95dc"; -const tintColorDark = "#fff"; +const tintColorDark = "#2f95dc"; + +const iconColorLight = "#c1c8cd"; +const iconColorDark = "#c1c8cd"; export const themes = { light: { text: "#000", background: "#fff", + icon: iconColorLight, tint: tintColorLight, - tabIconDefault: "#ccc", + tabIconDefault: "#eee", tabIconSelected: tintColorLight, }, dark: { text: "#fff", - background: "#000", + background: "#1a232d", + icon: iconColorDark, tint: tintColorDark, - tabIconDefault: "#ccc", + tabIconDefault: "#eee", tabIconSelected: tintColorDark, }, };