fix(instant): lighten the overlay color to 0.7 opacity from 0.9

This commit is contained in:
Brandon Millman 2018-12-04 15:20:26 -08:00
parent c43ba6b3c7
commit 14ad091e83

View File

@ -33,7 +33,7 @@ export const Overlay =
Overlay.defaultProps = {
zIndex: zIndex.overlayDefault,
backgroundColor: generateOverlayBlack(0.9),
backgroundColor: generateOverlayBlack(0.7),
};
Overlay.displayName = 'Overlay';