From a7713462501fe44db45aa2283433d7ce9d2fec72 Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Tue, 21 Feb 2023 23:14:27 +0100 Subject: [PATCH] refactor(style): improved dark mode colors --- src/themes.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/themes.ts b/src/themes.ts index 47eef40c..efc26cbb 100644 --- a/src/themes.ts +++ b/src/themes.ts @@ -33,18 +33,18 @@ export const darkThemeOverrides: GlobalThemeOverrides = { }, Layout: { - color: '#121212', - siderColor: '#1e1e1e', + color: '#1c1c1c', + siderColor: '#232323', siderBorderColor: 'transparent', }, Card: { - color: '#1e1e1e', - borderColor: 'transparent', + color: '#232323', + borderColor: '#282828', }, Table: { - tdColor: '#1e1e1e', + tdColor: '#232323', thColor: '#353535', }, };