From a88df6b728c94e271418198ea4b21eb8db0e0ba4 Mon Sep 17 00:00:00 2001 From: Yuriy Puchkov Date: Tue, 4 Aug 2020 17:24:45 +0300 Subject: [PATCH] Increase pressed button contrast --- src/utils/confighandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/confighandler.cpp b/src/utils/confighandler.cpp index 20960a45..d9dcd5b7 100644 --- a/src/utils/confighandler.cpp +++ b/src/utils/confighandler.cpp @@ -158,7 +158,7 @@ void ConfigHandler::setUIMainColor(const QColor &c) { } QColor ConfigHandler::uiContrastColorValue() { - QColor res = QColor(86, 0, 120); + QColor res = QColor(39, 0, 50); if (m_settings.contains(QStringLiteral("contastUiColor"))) { QString hex = m_settings.value(QStringLiteral("contastUiColor")).toString();