diff --git a/ui/app/AppLayouts/Browser/AddFavoriteModal.qml b/ui/app/AppLayouts/Browser/AddFavoriteModal.qml index ad2ff0cbac..be5e7e02a8 100644 --- a/ui/app/AppLayouts/Browser/AddFavoriteModal.qml +++ b/ui/app/AppLayouts/Browser/AddFavoriteModal.qml @@ -36,7 +36,7 @@ ModalPopup { verticalOffset: 5 radius: 10 samples: 15 - color: "#22000000" + color: Style.current.dropShadow } } diff --git a/ui/app/AppLayouts/Browser/BrowserWalletMenu.qml b/ui/app/AppLayouts/Browser/BrowserWalletMenu.qml index b355fa7f19..342a465b7c 100644 --- a/ui/app/AppLayouts/Browser/BrowserWalletMenu.qml +++ b/ui/app/AppLayouts/Browser/BrowserWalletMenu.qml @@ -31,7 +31,7 @@ Popup { verticalOffset: 5 radius: 10 samples: 15 - color: "#22000000" + color: Style.current.dropShadow } } padding: Style.current.padding diff --git a/ui/imports/Themes/DarkTheme.qml b/ui/imports/Themes/DarkTheme.qml index 640ed01d63..883f9b9465 100644 --- a/ui/imports/Themes/DarkTheme.qml +++ b/ui/imports/Themes/DarkTheme.qml @@ -34,6 +34,7 @@ Theme { property color orange: "#FFA500" property color background: "#2C2C2C" + property color dropShadow: "#66000000" property color appBarDividerColor: darkGrey property color border: darkGrey property color borderSecondary: tenPercentWhite diff --git a/ui/imports/Themes/LightTheme.qml b/ui/imports/Themes/LightTheme.qml index 4aaf716b1e..332afc3e75 100644 --- a/ui/imports/Themes/LightTheme.qml +++ b/ui/imports/Themes/LightTheme.qml @@ -34,6 +34,7 @@ Theme { property color orange: "#FFA500" property color background: white + property color dropShadow: "#22000000" property color appBarDividerColor: darkGrey property color border: grey property color borderSecondary: tenPercentBlack diff --git a/ui/imports/Themes/Theme.qml b/ui/imports/Themes/Theme.qml index dfe597ecb5..fb9cd0729a 100644 --- a/ui/imports/Themes/Theme.qml +++ b/ui/imports/Themes/Theme.qml @@ -33,6 +33,7 @@ QtObject { property color orange: "#FE8F59" property color background + property color dropShadow property color backgroundHover property color backgroundHoverLight property color border diff --git a/ui/shared/ToastMessage.qml b/ui/shared/ToastMessage.qml index 2772b07c54..5bc6317e07 100644 --- a/ui/shared/ToastMessage.qml +++ b/ui/shared/ToastMessage.qml @@ -76,7 +76,7 @@ Popup { verticalOffset: 2 radius: 10 samples: 15 - color: "#22000000" + color: Style.current.dropShadow } } diff --git a/ui/shared/status/StatusInputListPopup.qml b/ui/shared/status/StatusInputListPopup.qml index 9be03e21f7..600a0b2005 100644 --- a/ui/shared/status/StatusInputListPopup.qml +++ b/ui/shared/status/StatusInputListPopup.qml @@ -65,7 +65,7 @@ Popup { verticalOffset: 2 radius: 10 samples: 15 - color: "#22000000" + color: Style.current.dropShadow } }