From a91ac5cdf0a10c61428d425ea6a54a68d83716b8 Mon Sep 17 00:00:00 2001 From: fourtf Date: Sat, 23 Jun 2018 23:48:54 +0200 Subject: [PATCH] channged piss color to blue --- src/singletons/thememanager.cpp | 2 +- src/singletons/thememanager.hpp | 2 +- src/widgets/helper/splitheader.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/singletons/thememanager.cpp b/src/singletons/thememanager.cpp index b344b7970..c78c1ca90 100644 --- a/src/singletons/thememanager.cpp +++ b/src/singletons/thememanager.cpp @@ -166,7 +166,7 @@ void ThemeManager::actuallyUpdate(double hue, double multiplier) this->splits.header.background = getColor(0, sat, flat ? 1 : 0.9); this->splits.header.border = getColor(0, sat, flat ? 1 : 0.85); this->splits.header.text = this->messages.textColors.regular; - this->splits.header.activeText = isLight ? QColor(134, 79, 242) : QColor(242, 209, 79); + this->splits.header.focusedText = isLight ? QColor("#198CFF") : QColor("#84C1FF"); this->splits.input.background = getColor(0, sat, flat ? 0.95 : 0.95); this->splits.input.border = getColor(0, sat, flat ? 1 : 1); diff --git a/src/singletons/thememanager.hpp b/src/singletons/thememanager.hpp index 511684222..2de85944c 100644 --- a/src/singletons/thememanager.hpp +++ b/src/singletons/thememanager.hpp @@ -70,7 +70,7 @@ public: QColor border; QColor background; QColor text; - QColor activeText; + QColor focusedText; // int margin; } header; diff --git a/src/widgets/helper/splitheader.cpp b/src/widgets/helper/splitheader.cpp index 08abe9894..9536dfc7c 100644 --- a/src/widgets/helper/splitheader.cpp +++ b/src/widgets/helper/splitheader.cpp @@ -375,7 +375,7 @@ void SplitHeader::themeRefreshEvent() QPalette palette; if (this->split->hasFocus()) { - palette.setColor(QPalette::Foreground, this->themeManager->splits.header.activeText); + palette.setColor(QPalette::Foreground, this->themeManager->splits.header.focusedText); } else { palette.setColor(QPalette::Foreground, this->themeManager->splits.header.text); }