From 252ac74101a84bb782ad5fbf6efb3d07fe094bf6 Mon Sep 17 00:00:00 2001 From: Sidney Alcantara Date: Sun, 19 Sep 2021 17:01:37 +1000 Subject: [PATCH] update light backdrop color --- src/theme/colors.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/theme/colors.ts b/src/theme/colors.ts index a49bba4c..e18317a4 100644 --- a/src/theme/colors.ts +++ b/src/theme/colors.ts @@ -94,7 +94,9 @@ export const colorsLight = ( MuiBackdrop: { styleOverrides: { root: { - backgroundColor: colord({ l: 5, c: 5, h }).alpha(0.2).toHslString(), + backgroundColor: colord({ l: 70, c: 5, h }) + .alpha(0.6) + .toHslString(), }, invisible: { backgroundColor: "transparent" }, },