From 767a2bf3fcdc0fa4b04113a329041a9cfa96b69f Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Fri, 5 May 2023 12:15:59 +0200 Subject: [PATCH] chore(app.config): improve `modal` and `slideover` overlay background --- src/runtime/app.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/app.config.ts b/src/runtime/app.config.ts index 16ed74f3..58c2703a 100644 --- a/src/runtime/app.config.ts +++ b/src/runtime/app.config.ts @@ -518,7 +518,7 @@ const modal = { base: 'relative text-left overflow-hidden sm:my-8 w-full flex flex-col', overlay: { base: 'fixed inset-0 transition-opacity', - background: 'bg-gray-500/75 dark:bg-gray-600/75', + background: 'bg-gray-200/75 dark:bg-gray-800/75', transition: { enter: 'ease-out duration-300', enterFrom: 'opacity-0', @@ -548,7 +548,7 @@ const slideover = { wrapper: 'fixed inset-0 flex z-50', overlay: { base: 'fixed inset-0 transition-opacity', - background: 'bg-gray-500/75 dark:bg-gray-600/75', + background: 'bg-gray-200/75 dark:bg-gray-800/75', transition: { enter: 'ease-in-out duration-500', enterFrom: 'opacity-0',