From deced25647ee03dac992c127ffeb1433df779b8f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
 <sebastien.blin@savoirfairelinux.com>
Date: Wed, 8 Mar 2023 16:06:27 -0500
Subject: [PATCH] jamitheme: fix button color

Change-Id: I94ceab04d0d93a117ef7a16a8ef31139146681dd
---
 src/app/constant/JamiTheme.qml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/constant/JamiTheme.qml b/src/app/constant/JamiTheme.qml
index ba2fbfca7..17370fec2 100644
--- a/src/app/constant/JamiTheme.qml
+++ b/src/app/constant/JamiTheme.qml
@@ -102,7 +102,7 @@ Item {
     property color invertedNormalButtonColor: Qt.rgba(0, 0, 0, 0.75)
 
     property color editLineColor: "#03b9e9"
-    property color buttonTintedBlue: darkTheme ? "#03B9E9" : "#005699"
+    property color buttonTintedBlue: "#005699"
     property color buttonTintedBlueHovered: "#0071c9"
     property color buttonTintedBlueInternalHover: Qt.rgba(0, 86, 153, 0.2)
     property color buttonTintedBluePressed: "#0071c9"
@@ -227,7 +227,7 @@ Item {
     //mapPosition
     property color mapButtonsOverlayColor: darkTheme ? "#000000" : "#f0f0f0"
     property color mapButtonColor: darkTheme ?  "#f0f0f0" : "#000000"
-    property color sharePositionIndicatorColor: buttonTintedBlue
+    property color sharePositionIndicatorColor: darkTheme ? "#03B9E9" : "#005699"
     property color sharedPositionIndicatorColor: darkTheme ? whiteColor : blackColor
 
     //EmojiReact
-- 
GitLab