From cbe6cb64f7ff8bab80bc3ae646cc6cab6dc1eb85 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Tue, 11 Feb 2025 15:11:53 +0100 Subject: [PATCH] Lighten automatic light theme background colors --- src/modules/theme/services/ThemeCreator.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/theme/services/ThemeCreator.ts b/src/modules/theme/services/ThemeCreator.ts index c240dc5e..be6f0e47 100644 --- a/src/modules/theme/services/ThemeCreator.ts +++ b/src/modules/theme/services/ThemeCreator.ts @@ -49,8 +49,8 @@ const getBackgroundColor = ( } return { - paper: lighten(theme.colorSchemes.light.palette.primary.dark, 0.8), - default: lighten(theme.colorSchemes.light.palette.primary.dark, 0.9), + paper: lighten(theme.colorSchemes.light.palette.primary.dark, 0.7), + default: lighten(theme.colorSchemes.light.palette.primary.dark, 0.8), }; }