diff --git a/ui/imports/Themes/DarkTheme.qml b/ui/imports/Themes/DarkTheme.qml index a2a82268f6..c7089163af 100644 --- a/ui/imports/Themes/DarkTheme.qml +++ b/ui/imports/Themes/DarkTheme.qml @@ -98,6 +98,7 @@ Theme { property color roundedButtonSecondaryDisabledBackgroundColor: lightGrey property color tooltipBackgroundColor: black property color tooltipForegroundColor: white + property color chatInfoButtonBackgroundHoverColor: Qt.hsla(white.hslHue, white.hslSaturation, white.hslLightness, 0.05) property var accountColors: [ "#AAC6FF", diff --git a/ui/imports/Themes/LightTheme.qml b/ui/imports/Themes/LightTheme.qml index 0cd581e945..2e11bf6bc6 100644 --- a/ui/imports/Themes/LightTheme.qml +++ b/ui/imports/Themes/LightTheme.qml @@ -98,6 +98,7 @@ Theme { property color roundedButtonSecondaryDisabledBackgroundColor: buttonDisabledForegroundColor property color tooltipBackgroundColor: black property color tooltipForegroundColor: white + property color chatInfoButtonBackgroundHoverColor: grey1 property var accountColors: [ blue, diff --git a/ui/shared/status/StatusChatInfoButton.qml b/ui/shared/status/StatusChatInfoButton.qml index 3340275637..6ee540f2f3 100644 --- a/ui/shared/status/StatusChatInfoButton.qml +++ b/ui/shared/status/StatusChatInfoButton.qml @@ -37,7 +37,7 @@ Button { } background: Rectangle { - color: control.hovered ? Style.current.backgroundHover : "transparent" + color: control.hovered ? Style.current.chatInfoButtonBackgroundHoverColor : "transparent" radius: Style.current.radius }