Skip to content

Commit cc677f9

Browse files
authored
fix(modals): adjust shadown opacity in dark mode (#1813)
1 parent 2649a2a commit cc677f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/modals/src/styled/StyledModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const colorStyles = ({ theme }: ThemeProps<DefaultTheme>) => {
5555
hue: 'neutralHue',
5656
shade: 1200,
5757
light: { transparency: theme.opacity[200] },
58-
dark: { transparency: theme.opacity[800] }
58+
dark: { transparency: theme.opacity[1000] }
5959
});
6060
const shadow = theme.shadows.lg(offsetY, blurRadius, shadowColor);
6161

0 commit comments

Comments
 (0)